Answers for "how to check condition if directory exists in 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
0

how to check if a folder exists in node js

const fs = require("fs")

fs.access("./directory-name", function(error) {
  if (error) {
    console.log("Directory does not exist.")
  } else {
    console.log("Directory exists.")
  }
})
Posted by: Guest on October-08-2020

Code answers related to "how to check condition if directory exists in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language