* Removes a directory synchronously. * @param {string} dirPath The directory path
(dirPath)
| 335 | * @param {string} dirPath The directory path |
| 336 | */ |
| 337 | rmdirSync(dirPath) { |
| 338 | const providerPath = this.#toProviderPath(dirPath); |
| 339 | this[kProvider].rmdirSync(providerPath); |
| 340 | } |
| 341 | |
| 342 | /** |
| 343 | * Removes a file synchronously. |