📜  nodejs 文件存在 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:47.258000             🧑  作者: Mango

代码示例3
const fs = require('fs')
// We will convert sync function into a promise function
// so when is ready will provide the result without blocking.
const exists = async (path) => {
    return await new Promise((resolve) => {
        resolve(fs.existsSync(path));
    });
};
// If you have a file name samples on same root it will result true.
exists('./samples.txt').then(res => console.log(res))
console.log(`I'm not blocked as I'll show up on first`)