ensureDir
v1.0.6
Published
Ensures the directory exists, creating it recursively if not
Downloads
194
Readme
A utility for node, ensure a directory exists, create it recursively if not.
Example
ensureDir('./temp/path/to/nonexist/dir/', 0755, function (err) {
if (err) return next(err);
// your code here!
});
Installation
$ npm install ensureDir