I am deleting multiple files with the command:
del /s *.doc *.rtf *.txt
I get the error Could Not Find *.doc.
How can I get the command to continue deleting RTF and TXT files when there are no more DOC files?
I want to use a single command so I can traverse the subdirectories once, instead of executing a delete command for each file type individually.