Answers for "windows command delete all folder"

0

batch delete all folders and files

for /F "delims=" %%i in ('dir /b') do (rmdir "%%i" /s/q || del "%%i" /s/q)
Posted by: Guest on June-08-2021
0

How to delete dir, subdirectory, fils all in cmd

[destination]rd [deleteable dir] /s

Like:

c:myFolderrd dirName /s
Posted by: Guest on August-02-2021

Code answers related to "windows command delete all folder"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language