Make all directories in a path, like mkdir -p
.
var mkpath = require('mkpath');
mkpath('red/green/violet', function (err) {
if (err) throw err;
console.log('Directory structure red/green/violet created');
});
mkpath.sync('/tmp/blue/orange', 0700);
Create all directories that don't exist in path
with permissions mode
. When finished, callback(err)
fires with the error, if any.
Synchronous version of the same. Throws error, if any.
This software is released under the MIT license.