Answers for "nodejs path is directory"

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
7

path.dirname nodejs

/* The path.dirname() method returns the directory name of a path,
similar to the Unix dirname command. Trailing directory separators
are ignored, see path.sep. */

path.dirname('/foo/bar/baz/asdf/quux');
// Returns: '/foo/bar/baz/asdf'
Posted by: Guest on May-03-2021

Code answers related to "nodejs path is directory"

Code answers related to "Javascript"

Browse Popular Code Answers by Language