APPLE 025c69e553 wesmiler 点什么广告 před 3 roky
..
test 025c69e553 wesmiler 点什么广告 před 3 roky
.npmignore 025c69e553 wesmiler 点什么广告 před 3 roky
LICENSE 025c69e553 wesmiler 点什么广告 před 3 roky
README.md 025c69e553 wesmiler 点什么广告 před 3 roky
mkpath.js 025c69e553 wesmiler 点什么广告 před 3 roky
package.json 025c69e553 wesmiler 点什么广告 před 3 roky
run_linters.sh 025c69e553 wesmiler 点什么广告 před 3 roky

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.