mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/jibo-cli.git
synced 2026-06-15 22:56:11 +00:00
302 B
302 B
A utility for node, ensures the directory exists, creating 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