2023-12-21 00:27 2023-12-21 17:05 标签:exists
nodejs的fs提供了两个函数exists和existsSync来检查文件系统中是否存在。 exists 异步检查方式 existsSync 同步检查方式
文件文件是否存在
const fs = require('fs');
if (fs.existsSync("index.html")) {
console.log('文件存在');
}
路径是否存在
const fs = require('fs');
if (fs.existsSync("index.html"(err) => {
if(err)console.log("路径不存在");
});