0.1.5 • Published 6 years ago

file-find v0.1.5

Weekly downloads
95
License
ISC
Repository
github
Last release
6 years ago

NAME

file-find - Recursively chdir through directories and invokes a function once per file

SYNOPSIS

const { find } = require('file-find');

find((file) => {
  console.log('Found this file:', file);
}, './some-dir');

DESCRIPTION

Recursively changes directories starting at the provided directoy. Upon entering a directory the contents are listed and the callback provided to find is called once per file with the name of the file as the only argument.