I don't want to have a . or .. when I scan for folders.
tdir = ReadDir("modules")
Repeat
f$ = NextFile(tdir)
If FileType(f$) = 0 Then Exit
If FileType("modules"+f$) = 2 Then
Game_Mod$ = "modules"+f$
DebugLog Game_Mod$
EndIf
Forever
do a check for '.'
If Not Left(f$,1) = "." Then
EndIf
LoadDir$[](dir$, skip_dots=True)
??
Yan, isn't that BlitzMax? ;)
Pretty easy:
tdir = ReadDir("modules")
Repeat
f$ = NextFile(tdir)
If f$ = "" Then Exit
If f$ <> "." And f$ <> ".." Then
If FileType("modules"+f$) = 2 Then
Game_Mod$ = "modules"+f$
DebugLog Game_Mod$
EndIf
EndIf
Forever-- Byteemoz