What is walkdir?
The walkdir npm package is a utility for recursively traversing directories and handling files and directories found within. It provides a simple and efficient way to walk through directory trees, making it useful for tasks such as file system analysis, batch processing of files, and more.
What are walkdir's main functionalities?
Basic Directory Traversal
This feature allows you to traverse a directory and log each file and directory found. The callback function receives the path and stat object for each item.
const walk = require('walkdir');
walk('/path/to/directory', function(path, stat) {
console.log('Found:', path);
});
Filtering Files
This feature demonstrates how to filter files based on certain criteria, such as file extension. In this example, only JavaScript files are logged.
const walk = require('walkdir');
walk('/path/to/directory', function(path, stat) {
if (stat.isFile() && path.endsWith('.js')) {
console.log('Found JavaScript file:', path);
}
});
Handling Errors
This feature shows how to handle errors that may occur during directory traversal. The 'error' event is emitted with the path and error details.
const walk = require('walkdir');
const emitter = walk('/path/to/directory');
emitter.on('file', function(path, stat) {
console.log('Found file:', path);
});
emitter.on('error', function(path, err) {
console.error('Error for path', path, ':', err);
});
Asynchronous Traversal
This feature demonstrates synchronous directory traversal, where the entire directory tree is read and returned as an array of paths.
const walk = require('walkdir');
const paths = walk.sync('/path/to/directory');
paths.forEach(function(path) {
console.log('Found:', path);
});
Other packages similar to walkdir
fs-extra
fs-extra is a package that extends the native Node.js fs module with additional methods, including recursive directory traversal. It provides a higher-level API for file system operations, making it more versatile but also more complex compared to walkdir.
glob
glob is a package for matching files using patterns. It can be used to find files and directories that match specific patterns, making it useful for tasks like file searching and filtering. Unlike walkdir, glob focuses on pattern matching rather than directory traversal.
readdirp
readdirp is a recursive version of fs.readdir, providing a stream-based API for reading directories. It is similar to walkdir in that it allows for recursive directory traversal, but it uses streams for more efficient handling of large directory trees.
walkdir
Find files. Walks a directory tree emitting events based on what it finds. Presents a familliar callback/emitter/sync interface. Walk a tree of any depth. This is a performant option any pull requests to make it more so will be talken into consderation..
Example
var walk = require('walkdir');
walk('../',function(path,stat){
console.log('found: ',path);
});
var emitter = walk('../');
emitter.on('file',function(){
console.log('file from emitter: ',file);
});
walk.sync('../',function(path,stat){
console.log('found sync:',path);
});
var paths = walk.sync('../');
console.log('found paths sync: ',paths);
install
npm install walkdir
arguments
walkdir(path, [options], [callback])
walkdir.sync(path, [options], [callback]);
events
non error type events are emitted with (path,stat). stat is an instanceof fs.Stats
###path
fired for everything
###file
fired only for regular files
###link
fired when a symbolic link is found
###socket
fired when a socket descriptor is found
###fifo
fired when a fifo is found
###characterdevice
fired when a character device is found
###blockdevice
fired when a block device is found
###targetdirectory
fired for the stat of the path you provided as the first argument. is is only fired if it is a directory.
error events
error type events are emitted with (path,error). error being the error object returned from an fs call or other opperation.
###error
if the target path cannot be read an error event is emitted. this is the only failure case.
###fail
when stat or read fails on a path somewhere in the walk and it is not your target path you get a fail event instead of error.
This is handy if you want to find places you dont have access too.
notes
cancel a walk in progress
var walk = require('walkdir');
walk('../',function(path,stat){
this.end();
});
var walk = require('walkdir');
var emitter = walk('../');
doSomethingAsync(function(){
emitter.end();
})
thanks
thanks to substack. the interface for this module is based off of node-findit