mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-10 11:29:59 +03:00
302 B
302 B
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