delete command in cmd code example
Example 1: cmd delete
DEL filename
Example 2: 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>"
Example 3: delete a file in cmd windows
del /f filename.type
Example 4: how to remove a file in command line
del filename
Example 5: delete command to delete a file in cmd
del filename