Answers for "cmd to delete a folder and contents"

9

cmd delete folder

# NOTE: for cmd/batch/DOS only (not bash/Linux)

# EXAMPLE:
rmdir /s /q "C:\Users\TomDickHarry\DeletableStuff"

# SYNTAX
# rmdir /s /q "<your-folder-to-delete>"
Posted by: Guest on June-15-2020
0

cmd delete folder and all contents

del /S C:\Path\to\directory\*
Posted by: Guest on October-12-2021

Code answers related to "cmd to delete a folder and contents"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language