add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -1,21 +1,21 @@
# rmdir
> 删除目录及其内容。
> 在 PowerShell 中,此命令是 `Remove-Item` 的别名。文档基于 `cmd` 版本的 `rmdir`。
> 更多信息:<https://learn.microsoft.com/windows-server/administration/windows-commands/rmdir>.
> 在 PowerShell 中,此命令是 `Remove-Item` 的别名。文档基于命令提示符(`cmd`版本的 `rmdir`。
> 更多信息:<https://learn.microsoft.com/windows-server/administration/windows-commands/rmdir>
- 查看等效 PowerShell 命令的文档:
- 查看等效 PowerShell 命令的文档:
`tldr remove-item`
- 删除一个空目录:
`rmdir {{路径\到\目录}}`
`rmdir {{path\to\directory}}`
- 递归删除目录及其内容:
`rmdir {{路径\到\目录}} /s`
`rmdir {{path\to\directory}} /s`
- 递归删除目录及其内容,无需提示:
- 递归删除目录及其内容而不提示:
`rmdir {{路径\到\目录}} /s /q`
`rmdir {{path\to\directory}} /s /q`