In This Topic
FindFiles, collect files matching an extension in a path, recursively.
Syntax
var value; // Type: JSON
// Parameters
var Path; // Type: string
var Extension; // Type: string
var Recursive; // Type: boolean
value = FindFiles(Path, Extension, Recursive);
function FindFiles(
: string,
: string,
: boolean
) : JSON;
Parameters
- Path
- Absolute path to begin the search.
- Extension
- Extension of the files to collect.
- Recursive
- If set to True, the function will scan the folder recursively.
Browser Compatibility