nodejs项目开发中,需要实现一个功能,就是判断某个文件夹是否存在,存在的话,则不做处理,不存在的话,则创建对应的文件夹
实现代码
fs.stat('./json/' + sheng + '/' + type.name, (err, stats) => {
if (err) {
console.log('文件不存在');
fs.mkdirSync('./json/' + sheng + '/' + type.name, {recursive: true});
} else {
console.log('文件存在');
}
});