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

Method rmdirSync

lib/internal/vfs/provider.js:183–188  ·  view source on GitHub ↗

* Removes a directory synchronously. * @param {string} path The directory path

(path)

Source from the content-addressed store, hash-verified

181 * @param {string} path The directory path
182 */
183 rmdirSync(path) {
184 if (this.readonly) {
185 throw createEROFS('rmdir', path);
186 }
187 throw new ERR_METHOD_NOT_IMPLEMENTED('rmdirSync');
188 }
189
190 /**
191 * Removes a file.

Callers 15

rmdirSyncFunction · 0.45
createVfsHandlersFunction · 0.45
mainFunction · 0.45
test-cwd-enoent.jsFile · 0.45
test_deep_symlink_mixFunction · 0.45
cleanupFunction · 0.45
test-vfs-mkdir.jsFile · 0.45

Calls 1

createEROFSFunction · 0.85

Tested by

no test coverage detected