fs.rmdirSync(path[, options])
path<string> | <Buffer> | <URL>options<Object>maxRetries<integer> 如果遇到EBUSY、EMFILE、ENFILE、ENOTEMPTY或EPERM错误,Node.js 会以线性回退的方式重试操作,每次重试等待时间比上次增加retryDelay毫秒。此选项表示重试次数。如果recursive选项不是true,此选项将被忽略。默认值:0。recursive<boolean> 如果为true,则执行递归目录删除。在递归模式下,操作在失败时会重试。默认值:false。 已弃用。retryDelay<integer> 重试之间等待的时间,以毫秒为单位。如果recursive选项不为true,则此选项将被忽略。默认值:100。
同步 rmdir(2)。返回 undefined。
【Synchronous rmdir(2). Returns undefined.】
在文件(而不是目录)上使用 fs.rmdirSync() 会在 Windows 上导致 ENOENT 错误,在 POSIX 系统上导致 ENOTDIR 错误。
【Using fs.rmdirSync() on a file (not a directory) results in an ENOENT error
on Windows and an ENOTDIR error on POSIX.】
要获得类似于 rm -rf Unix 命令的行为,请使用 fs.rmSync(),并设置选项 { recursive: true, force: true }。
【To get a behavior similar to the rm -rf Unix command, use fs.rmSync()
with options { recursive: true, force: true }.】