nodejs test file exists 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;
}
}
Example 4: use node js to check if a json file exists
const fs = require('fs')
const path = './file.txt'
fs.access(path, fs.F_OK, (err) => {
if (err) {
console.error(err)
return
}
})