walkdirsync
v1.0.6
Published
walk directory tree synchronously
Downloads
1
Maintainers
Readme
#walkdirsync simple module for walking a directory tree synchronously
##installation npm i walkdirsync [-g]|[--save-dev]|[--save]
##usage Programatic Usage
var walkdirsync = require('walkdirsync');
walkdirsync('some/path', ['extension'], function callback(pathToOperateOn) {
// do stuff with pathToOperateOn
});
NOTES: extension list arg2 is an optional array. You can leave it blank and operate on every path under the the root.
cli usage
// not finished yet
###Future plans to implement more features