Hello.
I need to list only the folders that has a name composed of numbers only.
How do I do this?
OBS: I just posted the relevant content to the folder.
Global $path = "G:\jobs\"
For $i = 1 To $aArray[0]
Local $search = FileFindFirstFile($path & $aArray[$i] & "\[0-9]" )
I tried with "\*.*" and it returns me the expected result, but the other doesn't.