Answers for "check if is directory node js fs"

3

fs check if dir is dir

fs.lstatSync(path_string).isDirectory()
Posted by: Guest on June-05-2021
0

nodejs fs directory exists

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 "check if is directory node js fs"

Code answers related to "Javascript"

Browse Popular Code Answers by Language