Is it suppose to do that?
The following debugs yes
Code: Select all
If ExamineDirectory(0, "", "*.*")
Debug "Yes"
Else
Debug "Nope"
EndIf
Code: Select all
If ExamineDirectory(0, " ", "*.*")
Debug "Yes"
Else
Debug "Nope"
EndIf
Code: Select all
If ExamineDirectory(0, "", "*.*")
Debug "Yes"
Else
Debug "Nope"
EndIf
Code: Select all
If ExamineDirectory(0, " ", "*.*")
Debug "Yes"
Else
Debug "Nope"
EndIf
Code: Select all
Debug GetCurrentDirectory()
Debug ""
If ExamineDirectory(0, "", "")
While NextDirectoryEntry(0)
Debug GetCurrentDirectory() + DirectoryEntryName(0)
Wend
FinishDirectory(0)
EndIf