walk-the-path
v0.0.2
Published
Module to iteratively find all the files in the directory and subdirectory
Downloads
4
Readme
walk-the-path
A Walker Module, Iteratively traverses the file structure, and returns an array of files within the directory and subdirectory.
Installation
=================
npm install "walk-the-path"
Usage
==========
var walker = require("walk-the-path");
var options = {};
var done = function(err, result){};
walker.walk("./",options, done);