walk-the-path

Module to iteratively find all the files in the directory and subdirectory


Keywords
files, find, all
License
BSD-2-Clause
Install
npm install walk-the-path@0.0.2

Documentation

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);