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 tofalse
- ext list only files with the provided extension
- nonregular list non regular files such as devices or sockets, defaults to
false
- hidden list hidden files (files starting with
- callback
function (err, file)
- err eventual error
- file a relative path of the found file to the given directory path;