Answers for "check if is directory nodejs"

5

check if path is folder js

var fs = require('fs');
var stats = fs.statSync("c:\\dog.jpg");
console.log('is file ? ' + stats.isFile());
var stats = fs.statSync("c:\\demo");
console.log('is directory ? ' + stats.isDirectory());
Posted by: Guest on April-21-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 "check if is directory nodejs"

Code answers related to "Javascript"

Browse Popular Code Answers by Language