Answers for "windows cmd delete all files and subfolders"

0

batch delete all files in subfolders of type

del /S *.jpg

del - del command is used delete files from a computer
/S - recurses subdirectories and checks their contents
* - wildcard for the filename
.jpg - the type (extension) wanted
Posted by: Guest on August-21-2021

Code answers related to "windows cmd delete all files and subfolders"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language