co-walk
v0.0.2
Published
walk a file tree and return list of files
Readme
co-walk
walk a file tree and return a list of files
Installation
$ npm install co-walkExample
var path = __dirname + '/app'
var files = yield walk(path, {
symlinks: true,
ignore: ['art/**', 'node_modules']
})
// -> ['/home/user/app/.gitignore', ...]Api
walk(path, opts)
walk a file tree and return a list of files
path: full path to folderopts:symlinks: follow symlinks and return origin path [false]ignore: a list which folders, files you want to ignore
Tests
$ make testLicence
MIT
