Function to get all the files from a folder object recursive. This function is the equivalent of the method .getFilesRecursive()
Note: This function does not support file masks.
var folder = new Folder("C:/myfolder"); var files = getFilesRecursive(folder);
Parameter | Data type | Required | Description |
---|---|---|---|
folder | folder object | True | The folder to get all files from |
Value | Meaning |
---|---|
array | Array with file objects of all the files in the folder |