Lines Matching full:mkdir
3 Like `mkdir -p`, but in Node.js!
61 `opts.fs`. Your implementation should have `opts.fs.mkdir(path, opts, cb)`
64 You can also override just one or the other of `mkdir` and `stat` by
65 passing in `opts.stat` or `opts.mkdir`, or providing an `fs` option that
91 when the native implementation is not available or the stat/mkdir
97 when the native implementation is available and stat/mkdir are not
102 On Node.js v10.12.0 and above, use the native `fs.mkdir(p,
103 {recursive:true})` option, unless `fs.mkdir`/`fs.mkdirSync` has been
113 - Call `fs.mkdir(path, { recursive: true })` (or `fs.mkdirSync`)
119 - Call underlying `fs.mkdir` implementation, with `recursive: false`
124 - If error, raise original `mkdir` error
126 - Else, raise original `mkdir` error
157 # choosing a recursive mkdir implementation
161 ## use `fs.mkdir(path, {recursive: true}, cb)` if:
178 - You want more useful error messages than the native recursive mkdir