Answers for "node check if directory exists"

PHP
79

python check if file exists

import os

os.path.exists("file.txt") # Or folder, will return true or false
Posted by: Guest on February-14-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
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
5

php check if file exists

if (!file_exists('http://mysite.com/images/thumbnail_1286954822.jpg')) {   
$filefound = '0';                         
}
Posted by: Guest on March-24-2020

Code answers related to "node check if directory exists"

Browse Popular Code Answers by Language