-
Notifications
You must be signed in to change notification settings - Fork 43
Open
Description
Is it possible to use match pattern in folder or subfolder names similar to readFiles?
Here is an example file structure:
topFolder/
-- myFiles/
---- file1.txt
---- file2.txt
-- otherFiles/
---- otherFile.htm
---- anotherFile.htm
I want to get the list of files inside "myFiles".
The following code does not work:
dir.paths(folder, {
match: /Tests/
}, function(err, paths) {
if (err) {
console.log(err);
}
console.log("Folders FOUND: ", paths.dirs);
console.log("FILES FOUND: ", paths.files);
});
Metadata
Metadata
Assignees
Labels
No labels