fs.rmdir(path[, options], callback)


  • path <string> | <Buffer> | <URL>
  • options <Object> 当前没有公开的选项。以前有 recursivemaxBusyTriesemfileWait 选项,但它们已被弃用并移除。options 参数仍然被接受以保持向后兼容,但它不再被使用。
  • callback <Function>

异步 rmdir(2)。除了可能的异常外,没有其他参数会传递给完成回调。

【Asynchronous rmdir(2). No arguments other than a possible exception are given to the completion callback.】

在文件(而不是目录)上使用 fs.rmdir() 会在 Windows 上导致 ENOENT 错误,在 POSIX 系统上导致 ENOTDIR 错误。

【Using fs.rmdir() on a file (not a directory) results in an ENOENT error on Windows and an ENOTDIR error on POSIX.】

要获得类似于 rm -rf Unix 命令的行为,请使用 fs.rm(),并设置选项 { recursive: true, force: true }

【To get a behavior similar to the rm -rf Unix command, use fs.rm() with options { recursive: true, force: true }.】