node fs check if file exists code example
Example 1: node check if file exists
const fs = require("fs");
if (fs.existsSync(path)) {
}
Example 2: 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 3: check if file exists javascript
function executeIfFileExist(src, callback) {
var xhr = new XMLHttpRequest()
xhr.onreadystatechange = function() {
if (this.readyState === this.DONE) {
callback()
}
}
xhr.open('HEAD', src)
}