Skip to content

hollowdoor/mass_mkdirp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

mass-mkdirp

Install

npm install --save mass-mkdirp

Usage

var massMkdirp = require('mass-mkdirp');

massMkdirp('new', ['path', 'joined'], 'other/path').then(function(){
    console.log('done');
}).catch(function(e){
    console.log('failed!');
    console.log(e.stack);
});

Or:

var massMkdirp = require('mass-mkdirp');

massMkdirp(['new', ['path', 'joined'], 'other/path']).then(function(){
    console.log('done');
}).catch(function(e){
    console.log('failed!');
    console.log(e.stack);
});

API

massMkdirp(array|string, ...) -> promise

Accepts an array of paths, and a variable amount of path arguments.

Paths can be passed as arrays that will be automatically joined.

A promise is returned that resolves to all of the paths created.

Paths are created in parallel so the operations should be fairly fast.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published