File Management functions
int getNumberOfFilesInFolder( string path, string filter )
Returns the number of files in the given folder that match the filter.
Parameters
String path: Folder to search files / String filter: File filter (“.” is allowed).
Returned Value
INT: number of files in the folder that mach the filter.
Example 1
some code here;
var folder;stringlist getFilesInFolder( string path, string filter )
Returns a list of files in the given folder that match the filter.
Parameters
String path: Folder to search files / String filter: File filter (“.” is allowed).
Returned Value
LIST: list of files in the folder that match the filter.
Example 1
some code here;
var folder;