1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 14:46:00 +02:00

rmdir: add Chinese translation

This commit is contained in:
Starccy 2019-03-11 20:27:05 +08:00 committed by Starbeamrainbowlabs
parent 249b3cdc12
commit 1068da995a

15
pages.zh/windows/rmdir.md Normal file
View file

@ -0,0 +1,15 @@
# rmdir
> 删除一个目录和其中的内容.
- 删除一个空目录:
`rmdir {{目录的路径}}`
- 递归删除一个目录及其中的内容:
`rmdir {{目录的路径}} /s`
- 在没有提示的情况下递归删除目录及其内容:
`rmdir {{path/to/directory}} /s /q`