chuwanghui 6d115466a5 electron库 | преди 6 години | |
---|---|---|
.. | ||
test | преди 6 години | |
.npmignore | преди 6 години | |
LICENSE | преди 6 години | |
README.md | преди 6 години | |
mkpath.js | преди 6 години | |
package.json | преди 6 години |
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.