|
|
||||
|---|---|---|---|---|
| .. | ||||
| test | 11e3a9652a | преди 7 години | ||
| .npmignore | 11e3a9652a | преди 7 години | ||
| LICENSE | 11e3a9652a | преди 7 години | ||
| README.md | 11e3a9652a | преди 7 години | ||
| mkpath.js | 11e3a9652a | преди 7 години | ||
| package.json | 11e3a9652a | преди 7 години | ||
| run_linters.sh | 11e3a9652a | преди 7 години | ||
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.