Answers for "windows 10 delete all files and subdirectories"

0

delete all files in a directory cmd

del /S C:Pathtodirectory*
Posted by: Guest on October-23-2020
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 10 delete all files and subdirectories"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language