scandirectory v6.11.0-next.1596523214.ae23b11d3bbe0895d583c0d6a5641c377710a142
Scan a directory recursively with a lot of control and power
Usage
var scandir = require('scandirectory')
var path = process.cwd()
var options = {}
function completionCallback(err, list, tree) {
console.log({
error: err,
list: list,
tree: tree,
})
/*
{
error: null,
list: {
'a file.txt': 'file',
'a directory': 'dir',
'a directory/a sub file.txt': 'file'
},
tree: {
'a file.txt': true,
'a directory': {
'a sub file.txt': 'true
}
}
}
*/
}
scandir(path, options, completionCallback)Scan directory options:
action- (defaultnull) can benullor a function to use for both the fileAction and dirActionfileAction- (defaultnull) can benull,false, or a function to be the action callbackdirAction- (defaultnull) can benull,false, or a function to the action callbackrecurse- (defaulttrue) can benullor a boolean for whether or not to scan subdirectories tooreadFiles- (defaultfalse) can benullor a boolean for whether or not we should read the file contents
The options object is also sent to ignorefs so you can use its options too
The completion callback accepts the following arguments:
err-nullor an error that has occuredlist- a collection of all the child nodes in a list/object format: -{fileRelativePath: 'dir|file'}tree- a collection of all the child nodes in a tree format: -{dir: {dir:{}, file1:true} }- if the readFiles option is true, then files will be returned with their contents instead
The results for a specific argument is only generated if the argument is requested.
The action callbacks accept the following arguments:
fullPath- the full/absolute path of the current file/directoryrelativePath- the relative path of the current file/directory with respect to the original scanning pathfilename- the basename of the current file/directorystat- a simple stat object provided by readdir-cluster
The action callbacks can return false to skip the path from being processed further.
Discover how you can contribute by heading on over to the CONTRIBUTING.md file.
npm
Discover the release history by heading on over to the HISTORY.md file.
These amazing people are maintaining this project:
No sponsors yet! Will you be the first?
These amazing people have contributed code to this project:
Discover how you can contribute by heading on over to the CONTRIBUTING.md file.
Unless stated otherwise all works are:
and licensed under:
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
5 years ago
5 years ago
5 years ago
5 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
9 years ago
9 years ago
11 years ago