Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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
 
PREVIOUS NEXT
Tagged: #batch #delete #files #subfolders #type
ADD COMMENT
Topic
Name
2+7 =