Lines Matching full:path
61 `opts.fs`. Your implementation should have `opts.fs.mkdir(path, opts, cb)`
62 and `opts.fs.stat(path, cb)`.
81 `opts.fs`. Your implementation should have `opts.fs.mkdirSync(path, mode)`
82 and `opts.fs.statSync(path)`.
108 - If the path is a root directory, then pass it to the underlying
111 - Walk up the path statting each directory, to find the first path that
113 - Call `fs.mkdir(path, { recursive: true })` (or `fs.mkdirSync`)
121 - If path is a root directory, raise to the caller and do not handle it
123 - stat(path)
128 - return `undefined` if a root dir, or `made` if set, or `path`
133 letter or root UNC path) will fail. If the root directory exists, then it
161 ## use `fs.mkdir(path, {recursive: true}, cb)` if:
231 -p --print Print the first directories created for each path provided