fsPromises.rmdir(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。
- 返回:<Promise> 成功后用
undefined完成。
删除由 path 指定的目录。
🌐 Removes the directory identified by path.
在文件(而不是目录)上使用 fsPromises.rmdir() 会导致在 Windows 上 Promise 被拒绝并返回 ENOENT 错误,而在 POSIX 上返回 ENOTDIR 错误。
🌐 Using fsPromises.rmdir() on a file (not a directory) results in the
promise being rejected with an ENOENT error on Windows and an ENOTDIR
error on POSIX.
要获得类似于 rm -rf Unix 命令的行为,请使用 fsPromises.rm(),并设置选项 { recursive: true, force: true }。
🌐 To get a behavior similar to the rm -rf Unix command, use
fsPromises.rm() with options { recursive: true, force: true }.