我的需求就是读取指定文件夹中,后缀为.js
的文件。有两种方法解决。
1、不依赖插件:
import * as fs from 'fs';
import * as Path from 'path';
const files = fs.readdirSync(__dirname).filter(function (file) {
return Path.extname(file).toLowerCase() === '.js';
});
console.log(files)
2、使用glob
import * as glob from 'glob';
const files = glob.sync(__dirname + '/*.js');
console.log(files)