file-traversal
v1.1.0
Published
Traverse file system either breadth-first or depth-first.
Downloads
3
Readme
Use
Exposes two functions. Both return a list of complete file paths in the order indicated by the name.
var fileTraversal = require("file-traversal");
fileTraversal.breadth_1st(root_path);
fileTraversal.depth_1st(root_path);