mirror of https://github.com/CrimsonTome/tldr.git
17 lines
411 B
Markdown
17 lines
411 B
Markdown
# rmdir
|
|
|
|
> Remove a directory and its contents.
|
|
> More information: <https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/rmdir>.
|
|
|
|
- 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`
|