GET FILENAME PATTERN LIST

From Macros Wiki
Jump to navigationJump to search

Up

Command

GET_FILENAME_PATTERN_LIST <pattern> <num files found> <filename array> [<sub folders>]


Get a list of filenames matching a pattern that includes wildcard characters.

Parameters

<pattern>
Filename pattern, may include ? and * characters
<num files found>
Name of variable to be set to the number of matching files.
<filename array>
Name of string array to be set to the list of matching files.
[<sub folders>]
Set to 1 to search sub folders. Default is 0.

Example

LOCAL NumFiles, FileList$(100)
GET_FILENAME_PATTERN_LIST "C:\MyFolder\*.txt", NumFiles, FileList$, 1