Skip to content

Instantly share code, notes, and snippets.

@simov
Created November 22, 2012 20:00
Show Gist options
  • Save simov/4132717 to your computer and use it in GitHub Desktop.
Save simov/4132717 to your computer and use it in GitHub Desktop.
Recursive directory listing in NodeJS.
var fs = require('fs'),
path = require('path');
var dir = null, file = null;
exports.readdirr = function (dpath, cb) {
dir = [], file = [];
dir.push(dpath);
function loop (i) {
if (i == dir.length) return cb(null, dir, file);
fs.readdir(dir[i], function (err, files) {
if (err) return cb(err);
getstat(dir[i], files, function (err) {
if (err) return cb(err);
loop(++i);
});
});
}
loop(0);
}
function getstat (dpath, files, cb) {
function loop (i) {
if (i == files.length) return cb();
var fpath = path.join(dpath, files[i]);
fs.stat(fpath, function (err, stats) {
if (err) return cb(err);
if (stats.isDirectory()) {
dir.push(fpath);
} else {
file.push(fpath);
}
loop(++i);
});
}
loop(0);
}
/*
var recursive = require('readdirr');
var root = path.resolve(process.argv[2]);
recursive.readdirr(root, function (err, dir, file) {
if (err) {
console.log(err);
} else {
console.log('DONE!');
}
});
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment