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:
parent
2cdedded50
commit
8480f6869a
1 changed files with 15 additions and 0 deletions
15
pages/windows/rmdir.md
Normal file
15
pages/windows/rmdir.md
Normal 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`
|
Loading…
Add table
Reference in a new issue