Skip to content

Instantly share code, notes, and snippets.

@djabif
Created October 27, 2014 11:42
Show Gist options
  • Save djabif/338fb7dc726a0ac5872d to your computer and use it in GitHub Desktop.
Save djabif/338fb7dc726a0ac5872d to your computer and use it in GitHub Desktop.
//this method does a recursive directory search in node.js
var walk = function(dir, done) {
var results = [];
fs.readdir(dir, function(err, list) {
if (err) return done(err);
var pending = list.length;
if (!pending) return done(null, results);
list.forEach(function(file) {
file = dir + '/' + file;
fs.stat(file, function(err, stat) {
if (stat && stat.isDirectory()) {
walk(file, function(err, res) {
results = results.concat(res);
if (!--pending) done(null, results);
});
} else {
results.push(file);
if (!--pending) done(null, results);
}
});
});
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment