* I’d like to find all * 。Src 文件夹中的 html 文件及其所有使用 nodejs 的子文件夹。最好的方法是什么?
var folder = '/project1/src';
var extension = 'html';
var cb = function(err, results) {
// results is an array of the files with path relative to the folder
console.log(results);
}
// This function is what I am looking for. It has to recursively traverse all sub folders.
findFiles(folder, extension, cb);
我认为很多开发人员都应该拥有经过测试的优秀解决方案,使用它比自己编写一个更好。