
Is it possible to use GFL to get the file list in not just the folder but the subfolders as well I have been trying for a day now with no luck - thanks in advance...
Moderators: JRL, Dorian (MJT support)
GetFileList>filespec,result[,delimiter]
GetFileList returns a list of the files found matching the specified filespec. For instance, to return the list of files in the temp directory specify c:\temp\*.* as the filespec.
If delimiter is ommitted each filename is separated by a semicolon. Otherwise the filenames are separated by the delimiter specified.
By default GetFileList returns files. To return directories only set GFL_TYPE to 1 (Let>GFL_TYPE=1).
Abbreviation : GFL
Example
GetFileList>c:\temp\*.*,files
Separate>files,;,file_names
MessageModal>Num Files: %file_names_count%
Let>k=0
Repeat>k
Let>k=k+1
Message>file_names_%k%
Until>k,file_names_count