Horje
cmd delete folder Code Example
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>"
delete all files in a directory cmd
del /S C:\Path\to\directory\*
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/*/

create batch file to delete folders and subfolders

Echo batch file to delete folder

@RD /S /Q "D:\testfolder"





Shell

Related
turn of raspberry Code Example turn of raspberry Code Example
how to change my default branch in git Code Example how to change my default branch in git Code Example
npm ERR! Maximum call stack size exceeded ubuntu Code Example npm ERR! Maximum call stack size exceeded ubuntu Code Example
nvm update node Code Example nvm update node Code Example
fingerprint login disabled ubuntu 20.04 Code Example fingerprint login disabled ubuntu 20.04 Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12