首页 > 其他 > 详细

node递归属性目录结构

时间:2016-02-18 22:46:42      阅读:178      评论:0      收藏:0      [点我收藏+]

要求,读取结束后才能输出所有文件

var fs = require(‘fs‘);
var path = require(‘path‘);

var list = [];
var count = 0;
function readDir(_path, callback) {

var toExec = function (_path) {
count++;
fs.readdir(_path, function (err, files) {
if (err) {
console.log(err);
return;
}
files.forEach(function (file, i) {
var stat = fs.lstatSync(path.join(_path, file));
if (stat.isFile()) {
list.push(path.join(_path, file));
} else if (stat.isDirectory()) {
toExec(path.join(_path, file));
}

if ((i + 1) === files.length) {
count--;
}

if(count === 0){
callback(list);
}
});
});
};

toExec(_path);
};

readDir(path.join(process.cwd(), ‘go‘), function (_list) {
console.log(_list);
});

node递归属性目录结构

原文:http://www.cnblogs.com/ajun/p/5199328.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!