Wierd Issue with ExamineDirectory
Posted: Tue Jan 26, 2016 9:55 pm
Whenever I use ExamineDirectory with an empty string in the DirectoryName$, it returns TRUE.
Is it suppose to do that?
The following debugs yes
The following debugs Nope
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