Files
JiboSDK/node_modules/ensureDir/Readme.md
2026-03-22 03:21:45 +02:00

14 lines
302 B
Markdown

A utility for [node](http://nodejs.org), 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