B Brian Wescombe Oct 1, 2006 #1 How would I go about writing a batch file that will delete a selection of files from various folders? Thanks in advance!
How would I go about writing a batch file that will delete a selection of files from various folders? Thanks in advance!
S Shenan Stanley Oct 1, 2006 #2 Brian said: How would I go about writing a batch file that will delete a selection of files from various folders? Click to expand... Open Notepad. Type in the appropriate command lines. Save the file with a .bat or .cmd extension. ie: del /q /f x:\mydirectory\myfile.doc or erase /q /f x:\mydirectory\myfile.doc Without you giving us more - that should get you started.
Brian said: How would I go about writing a batch file that will delete a selection of files from various folders? Click to expand... Open Notepad. Type in the appropriate command lines. Save the file with a .bat or .cmd extension. ie: del /q /f x:\mydirectory\myfile.doc or erase /q /f x:\mydirectory\myfile.doc Without you giving us more - that should get you started.