diff --git a/pages/windows/rmdir.md b/pages/windows/rmdir.md new file mode 100644 index 0000000000..5246e51f3f --- /dev/null +++ b/pages/windows/rmdir.md @@ -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`