use node js to check if a json file exists code example
Example 1: node check if file exists
const fs = require("fs");
if (fs.existsSync(path)) {
}
Example 2: use node js to check if a json file exists
const fs = require('fs')
const path = './file.txt'
try {
if (fs.existsSync(path)) {
}
} catch(err) {
console.error(err)
}
Example 3: 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
}
})
Example 4: 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)
}