0.1.2 • Published 10 years ago

file-finder v0.1.2

Weekly downloads
4
License
-
Repository
-
Last release
10 years ago

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

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