Sha256: 2f64f6417de36f41406f71556b8c288119ca15686d59b0ef50e911bf27bf107f

Contents?: true

Size: 741 Bytes

Versions: 69

Compression:

Stored size: 741 Bytes

Contents

# 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](http://www.opensource.org/licenses/MIT).

Version data entries

69 entries across 69 versions & 2 rubygems

Version Path
trusty-festivity-extension-2.3.1 node_modules/bower/node_modules/decompress-zip/node_modules/mkpath/README.md
trusty-festivity-extension-2.3.0 node_modules/bower/node_modules/decompress-zip/node_modules/mkpath/README.md
entangled-0.0.16 spec/dummy/public/node_modules/bower/node_modules/decompress-zip/node_modules/mkpath/README.md
entangled-0.0.15 spec/dummy/public/node_modules/bower/node_modules/decompress-zip/node_modules/mkpath/README.md
entangled-0.0.14 spec/dummy/public/node_modules/bower/node_modules/decompress-zip/node_modules/mkpath/README.md
entangled-0.0.13 spec/dummy/public/node_modules/bower/node_modules/decompress-zip/node_modules/mkpath/README.md
entangled-0.0.12 spec/dummy/public/node_modules/bower/node_modules/decompress-zip/node_modules/mkpath/README.md
entangled-0.0.11 spec/dummy/public/node_modules/bower/node_modules/decompress-zip/node_modules/mkpath/README.md
entangled-0.0.10 spec/dummy/public/node_modules/bower/node_modules/decompress-zip/node_modules/mkpath/README.md