Recursively get all files in a directory tree, given the root path (starting point)
If you like it, star; if you don't, please tell me why!! :)
npm install all-files-in-tree
var allFilesInTree = require("all-files-in-tree");
// You have the sync version:
var files = allFilesInTree.sync("/home/user/dir");
// Or the async one:
allFilesInTree.async("/home/user/dir")
.then(function(files) {
// do your stuff here
});
That easy? YES, that's the idea. ;)
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D