mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
16 lines
302 B
Markdown
16 lines
302 B
Markdown
![]() |
# 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`
|