file exists nodejs code example
Example 1: node check if file exists
const fs = require("fs");
if (fs.existsSync(path)) {
}
Example 2: node if file exists
const fs = require("fs");
if (fs.existsSync(path)) {
}
Example 3: node check if file exists
const fs = require('fs');
let file = '../path/to/chad_warden.mpeg';
const fileExists = (file) => {
return new Promise((resolve) => {
fs.access(file, fs.constants.F_OK, (err) => {
err ? resolve(false) : resolve(true)
});
})
}
const fileExistsSync = (file) => {
try {
fs.accessSync(file, fs.constants.R_OK | fs.constants.W_OK);
return true;
} catch (err) {
return false;
}
}