var fs = require('fs');
var join = require('path').join;
function getJsonFiles(jsonPath) {
let jsonFiles = [];
function findJsonFile(path) {
let files = fs.readdirSync(path);
files.forEach(function (item, index) {
let fPath = join(path, item);
let stat = fs.statSync(fPath);
if (stat.isDirectory() === true) {
findJsonFile(fPath);
}
if (stat.isFile() === true) {
jsonFiles.push(fPath);
}
});
}
findJsonFile(jsonPath);
console.log(jsonFiles);
}
getJsonFiles("test");
相关文章
- 10-03在读取模式下使用fopen检查文件的存在不会给出错误.或/ filename
- 10-03读取文件夹下的所有文件
- 10-03python下实现遍历文件夹及其子文件夹中带特殊字符的所有文件的复制
- 10-03Windows·查找某路径下所有的Office文件及压缩文件
- 10-03Windows开发:读取文件夹下所有文件
- 10-03python下读取excel文件
- 10-03[转]Maven项目读取src.main.resources下的文件
- 10-03五种情况下会刷新控件状态(刷新所有子FWinControls的显示)——从DFM读取数据时、新增加子控件时、重新创建当前控件的句柄时、设置父控件时、显示状态被改变时
- 10-03Python小代码_15_遍历指定路径下的所有文件和文件夹,并格式化输出文件路径文件名和文件夹名,文件大小,修改时间
- 10-03读取某文件夹下所有excel文件 python