Answers for "get if directory exists js"

18

node check if file exists

const fs = require("fs"); // Or `import fs from "fs";` with ESM
if (fs.existsSync(path)) {
    // Do something
}
Posted by: Guest on May-22-2020
1

javascript folder exists

const fs = require('fs');

// directory to check if exists
const dir = './uploads';

// check if directory exists
fs.access(dir, (err) => {
    console.log(`Directory ${err ? 'does not exist' : 'exists'}`);
});
Posted by: Guest on December-08-2020

Code answers related to "get if directory exists js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language