npm.io
0.1.2 • Published 12 years ago

file-finder

Licence
Version
0.1.2
Deps
0
Vulns
0
Weekly
0

FileFinder

This module searches a directory recursively for a file that matches some string key.

Installation

npm install file-finder

Usage

var FileFinder = require( 'file-finder' );

var options = {
    searchSubDirectories : true
}

FileFinder.findFiles( directory, searchString, options, function(error, matchingFiles) {
	...do some stuff with the files that matched the search string
});

Keywords