在 nodejs 中如何检测文件是否存在

How to check if a file exists in Node.js
更新于: 2021-11-19 14:43:16
const fs = require('fs');
const path = './file.txt';
try {
    if (fs.existsSync(path)) {
        //file exists
    }
} catch (err) {
    console.error(err);
}