Answers for "nodejs check if path exists and create"

18

node if path 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

create path if not exist node js

var fs = require('fs');
var dir = './tmp';

if (!fs.existsSync(dir)){
    fs.mkdirSync(dir);
}
Posted by: Guest on September-01-2021

Code answers related to "nodejs check if path exists and create"

Code answers related to "Javascript"

Browse Popular Code Answers by Language