rmdir: add page (#1933)

coverage
Owen Voke 2018-01-28 12:10:59 +00:00 committed by Starbeamrainbowlabs
parent 2cdedded50
commit 8480f6869a
1 changed files with 15 additions and 0 deletions

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

@ -0,0 +1,15 @@
# rmdir
> Remove a directory and its contents.
- Remove an empty directory:
`rmdir {{path/to/directory}}`
- Remove a directory and its contents recursively:
`rmdir {{path/to/directory}} /s`
- Remove a directory and its contents recursively without prompting:
`rmdir {{path/to/directory}} /s /q`