@fibjs/mkdirp
Like mkdir -p, but in fibjs!
Install
1$ npm i @fibjs/mkdirp --save
Usage
1
2
3
4
5
6
7const mkdirp = require('@fibjs/mkdirp');
try{
mkdirp('/tmp/a/c/d')
} catch(err) {
console.error(err)
}
then /tmp/a/c/d has beed created.
API
- mkdirp(dir, opts)
asynchronously create a new directory and any necessary subdirectories at dir
with octal permission string opts.mode. If optsis a non-object, it will be treated as the opts.mode.
If opts.modeisn't specified, it defaults to 0777 & (~process.umask()).
Returns the first directory that had to be created, if any.
You can optionally pass in an alternate fsimplementation by passing in
opts.fs. Your implementation should have opts.fs.mkdir(path, mode)and
opts.fs.stat(path).
Questions & Suggestions
Please open an issue here .
