Recursively get all files in a directory tree, given the root path (starting point)
npm install all-files-in-treeRecursively 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. ;)
1. Fork it!
2. Create your feature branch: git checkout -b my-new-featuregit commit -am 'Add some feature'
3. Commit your changes: git push origin my-new-feature`
4. Push to the branch:
5. Submit a pull request :D