Answers for "remove directory in cmd"

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>"
Posted by: Guest on June-15-2020
7

remove directory in cmd

# for removing empty directory
$ rmdir myDirectory

# to remove a directory that contains files and subdirectory
$ rm -r myDirectory
Posted by: Guest on April-08-2020
1

how to remove directory in cmd

# for removing empty directory
$ rmdir myDirectory

# to remove a directory that contains files and subdirectory
$ rm -r myDirectory
rm -rf /config/filegroups/*/
Posted by: Guest on October-08-2020
0

how to delete dir in windows cmd

to remove an unempty file from cmd directory
$ rmdir /S nonemptyfile
Posted by: Guest on November-19-2020

Code answers related to "remove directory in cmd"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language