nodejs if file exist code example
Example 1: node check if file exists
const fs = require("fs"); // Or `import fs from "fs";` with ESM
if (fs.existsSync(path)) {
// Do something
}
Example 2: js check file exist
import fs from 'fs';
const path = './file.txt';
try {
if (fs.existsSync(path)) {
//file exists
}
} catch(err) {
console.error(err);
}