chuwanghui 6d115466a5 electron库 | 6 years ago | |
---|---|---|
.. | ||
test | 6 years ago | |
.npmignore | 6 years ago | |
LICENSE | 6 years ago | |
README.md | 6 years ago | |
mkpath.js | 6 years ago | |
package.json | 6 years ago |
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.