DEP0147:fs.rmdir(path, { recursive: true })
类型:生命结束
¥Type: End-of-Life
fs.rmdir
、fs.rmdirSync
和 fs.promises.rmdir
方法过去曾支持 recursive
选项。该选项已被移除。
¥The fs.rmdir
, fs.rmdirSync
, and fs.promises.rmdir
methods used
to support a recursive
option. That option has been removed.
请改用 fs.rm(path, { recursive: true, force: true })
、fs.rmSync(path, { recursive: true, force: true })
或 fs.promises.rm(path, { recursive: true, force: true })
。
¥Use fs.rm(path, { recursive: true, force: true })
,
fs.rmSync(path, { recursive: true, force: true })
or
fs.promises.rm(path, { recursive: true, force: true })
instead.
可自动迁移 (source):
¥An automated migration is available (source):
npx codemod@latest @nodejs/rmdir