fs stat fiel exists 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: fs readfile encoding
fs.readFile('/etc/passwd', 'utf8', callback);