0.0.2 • Published 12 years ago
co-walk v0.0.2
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 falseignore: a list which folders, files you want to ignore
Tests
$ make testLicence
MIT