Skip to content

match pattern for folder names? #48

Description

@QAscoop

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);
 });

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions