31 lines
722 B
JavaScript
31 lines
722 B
JavaScript
(function () {
|
|
var walk = require("../lib/walk.js"),
|
|
emit = walk(process.argv[2] || "/tmp");
|
|
//icount = 0;
|
|
|
|
emit.on('directories', function (path, dirs, next) {
|
|
dirs.forEach(function (dir) {
|
|
console.log(path + '/' + dir.name);
|
|
});
|
|
next();
|
|
});
|
|
/*
|
|
emit.on('directory', function (path, file, next) {
|
|
//icount += 1;
|
|
console.log(path + '/' + file.name); // + " " + icount);
|
|
next();
|
|
//process.nextTick(next);
|
|
//setTimeout(next, 100);
|
|
});
|
|
emit.on('file', function (path, file, next) {
|
|
console.log("FILE:", file.name, "\n");
|
|
next();
|
|
});
|
|
emit.on('directory', function (path, dir, next) {
|
|
console.log("DIR:", dir.name, "\n");
|
|
next();
|
|
});
|
|
*/
|
|
}());
|
|
|