1.0.2 • Published 8 years ago

recursive-files v1.0.2

Weekly downloads
4
License
Fair
Repository
github
Last release
8 years ago

recursive-files

Asynchronous recursive readdir. Note that the given callback it's called multiple times, one for each found file.

Usage

recursiveFiles(dir, [options], callback)
  • dir directory path;
  • options
    • hidden list hidden files (files starting with .), defaults to false
    • ext list only files with the provided extension
    • nonregular list non regular files such as devices or sockets, defaults to false
  • callback function (err, file)
    • err eventual error
    • file a relative path of the found file to the given directory path;