Answers for "check if directory or not in node js"

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

Code answers related to "check if directory or not in node js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language