1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-25 08:15:33 +02:00

rmdir: add page (#1933)

This commit is contained in:
Owen Voke 2018-01-28 12:10:59 +00:00 committed by Starbeamrainbowlabs
parent 2cdedded50
commit 8480f6869a

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`