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