Answers for "check if folder path is exist in node js"

18

node if path 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

nodejs check directory exist or not

var fs = require('fs');
if (!fs.existsSync(newDest)) fs.mkdirSync(newDest,'0777', true);
Posted by: Guest on August-09-2021

Code answers related to "check if folder path is exist in node js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language