delete directory command line windows code example
Example 1: cmd delete folder
rmdir /s /q "C:\Users\TomDickHarry\DeletableStuff"
Example 2: remove directory in cmd
$ rmdir myDirectory
$ rm -r myDirectory
Example 3: how to remove directory in cmd
$ rmdir myDirectory
$ rm -r myDirectory
rm -rf /config/filegroups/*/
Example 4: delete all files in a directory cmd
del /S C:\Path\to\directory\*
Example 5: how to delete dir in windows cmd
to remove an unempty file from cmd directory
$ rmdir /S nonemptyfile