Horje
batch delete folder Code Example
batch 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>"
create batch file to delete folders
del /f /q "%appdata%\uTorrent\CompletedDL\*.*"
for /d %%d in ("%appdata%\uTorrent\CompletedDL\*.*") do rmdir /s /q "%%d"




Shell

Related
Exception: Error running pod install flutter on iod Code Example Exception: Error running pod install flutter on iod Code Example
cmd delete folder Code Example cmd delete folder Code Example
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

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