You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sigonasr2
8202feb6cb
|
4 years ago | |
---|---|---|
.. | ||
test | 4 years ago | |
.npmignore | 4 years ago | |
LICENSE | 4 years ago | |
README.md | 4 years ago | |
mkpath.js | 4 years ago | |
package.json | 4 years ago |
README.md
mkpath
Make all directories in a path, like mkdir -p
.
How to use
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);
mkpath(path, [mode = 0777 & (~process.umask()),] [callback])
Create all directories that don't exist in path
with permissions mode
. When finished, callback(err)
fires with the error, if any.
mkpath.sync(path, [mode = 0777 & (~process.umask())]);
Synchronous version of the same. Throws error, if any.
License
This software is released under the MIT license.