8000 GitHub - danielstjules/filepaths: Get paths to all files in dirs/subdirs in node
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

danielstjules/filepaths

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

filepaths

Get paths to all files in dirs/subdirs in node

Build Status

getSync(paths, [opts])

Recurses through the supplied paths, returning an array of file paths found in each. Paths may be a string, or an array of strings. The paths may be strings pointing to files or directories. Accepts an options object with the following keys: ignore and ext. opts.ignore takes either a single string pattern or array of patterns to ignore. opts.ext accepts either a string, or array of strings corresponding to filename extensions to retrieve.

var filepaths = require('filepaths');

filepaths.getSync('/dir');

filePaths.getSync('/lib', {ext: '.js'});

filePaths.getSync('/project', {ignore: 'node_modules'});

filePaths.getSync('/project', {ignore: 'test|spec'});

filepaths.getSync(['/dir1', '/dir2'], {
  ext:    ['.js', '.jsx'],
  ignore: ['node_modules']
});

About

Get paths to all files in dirs/subdirs in node

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •  
0