I'm an absolute n00b when it comes to scripting
How would i go about writing a Windows script for sabnzbd that would delete all files upon completion?
Windows Auto-Del Script?
Re: Windows Auto-Del Script?
Why would you want to delete all the files you've just downloaded? Or do you mean something else?
Re: Windows Auto-Del Script?
yes, i need all the files deleted upon completion
i'm doing speed tests of large files during different periods of the day
i'm doing speed tests of large files during different periods of the day
Re: Windows Auto-Del Script?
Batch file, put this in a file called del_all.cmd and put in the scripts folder.
Use at your own risk 
BTW, consider skipping post-processing (so use "Download" instead of "+Delete")
so you don't measure the post-processing.
Code: Select all
del /s/q %1

BTW, consider skipping post-processing (so use "Download" instead of "+Delete")
so you don't measure the post-processing.