tldr/pages.zh/windows/rmdir.md

17 lines
391 B
Markdown
Raw Normal View History

2019-03-11 12:27:05 +00:00
# rmdir
> 删除一个目录和其中的内容。
> 更多信息:<https://learn.microsoft.com/windows-server/administration/windows-commands/rmdir>.
2019-03-11 12:27:05 +00:00
- 删除一个空目录:
2019-03-11 12:27:05 +00:00
`rmdir {{目录的路径}}`
- 递归删除一个目录及其中的内容:
`rmdir {{目录的路径}} /s`
- 在没有提示的情况下递归删除目录及其内容:
`rmdir {{path/to/directory}} /s /q`