日期:
作者: 小胡子哥
var base = path.join(__dirname, "code");
var exclude = /.git*|node_modules/;
var travel = function(filePath) {
fs.readdirSync(filePath).forEach(function(file) {
var file = path.join(filePath, file);
if(exclude.test(file)) return;
if(fs.statSync(file).isDirectory()) {
travel(file);
} else {
console.log(file);
}
});
};
travel(base);
这网速真是弱爆了...客官稍等,评论还在加载~