MCPcopy Index your code
hub / github.com/nodejs/node / mkdirSync

Method mkdirSync

lib/internal/vfs/provider.js:160–165  ·  view source on GitHub ↗

* Creates a directory synchronously. * @param {string} path The directory path * @param {object} [options] Options

(path, options)

Source from the content-addressed store, hash-verified

158 * @param {object} [options] Options
159 */
160 mkdirSync(path, options) {
161 if (this.readonly) {
162 throw createEROFS('mkdir', path);
163 }
164 throw new ERR_METHOD_NOT_IMPLEMENTED('mkdirSync');
165 }
166
167 /**
168 * Removes a directory.

Callers 15

mkdirSyncFunction · 0.45
createVfsHandlersFunction · 0.45
#openFileMethod · 0.45
mainFunction · 0.45
prepareFunction · 0.45
prepareFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
createEntryPointFunction · 0.45

Calls 1

createEROFSFunction · 0.85

Tested by 1

testFunction · 0.36