fs.rmdirSync(path[, options])
稳定性: 1 - Recursive removal 是实验的。
同步的 rmdir(2)。
返回 undefined。
在文件(而不是目录)上使用 fs.rmdirSync(),则在 Windows 上会导致 ENOENT 错误,在 POSIX 上会导致 ENOTDIR 错误。
Stability: 1 - Recursive removal is experimental.
path<string> | <Buffer> | <URL>options<Object>maxRetries<integer> If anEBUSY,EMFILE,ENFILE,ENOTEMPTY, orEPERMerror is encountered, Node.js will retry the operation with a linear backoff wait ofretryDelayms longer on each try. This option represents the number of retries. This option is ignored if therecursiveoption is nottrue. Default:0.recursive<boolean> Iftrue, perform a recursive directory removal. In recursive mode, errors are not reported ifpathdoes not exist, and operations are retried on failure. Default:false.retryDelay<integer> The amount of time in milliseconds to wait between retries. This option is ignored if therecursiveoption is nottrue. Default:100.
Synchronous rmdir(2). Returns undefined.
Using fs.rmdirSync() on a file (not a directory) results in an ENOENT error
on Windows and an ENOTDIR error on POSIX.