Answers for "is valid directory path js"

6

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

fs , valid path check

const fs = require('fs')

const path = './file.txt'

try {
  if (fs.existsSync(path)) {
    //file exists
  }
} catch(err) {
  console.error(err)
}
Posted by: Guest on August-11-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language