List of files to be deleted?

equinox

New Member
Hello. I want to erase some files with eraserl.exe (using a command prompt). I put their names in a list:

Code:
file1.abc
file2.ewr
file3.ggh
...
file34.asq
File names are arbitrary and absolutely different, so I can't use any wildcards.
Which parameter I have to write in command prompt after eraserl.exe? I tried this:

Code:
Eraserl.exe -file (? - i don't know what to type here) -method DoD -resultsonerror
Any ideas, suggestions?
 
Code:
Eraserl.exe -file file1.abc -method DoD -resultsonerror
Eraserl.exe -file file2.ewr -method DoD -resultsonerror
Eraserl.exe -file file3.ggh -method DoD -resultsonerror
...
Eraserl.exe -file file34.asq -method DoD -resultsonerror
How's that? That's the power of the command line.

Joel
 
Back
Top