how to have post-processing remove all un-needed files after unpack

Get help with all aspects of SABnzbd
Forum rules
Help us help you:
  • Are you using the latest stable version of SABnzbd? Downloads page.
  • Tell us what system you run SABnzbd on.
  • Adhere to the forum rules.
  • Do you experience problems during downloading?
    Check your connection in Status and Interface settings window.
    Use Test Server in Config > Servers.
    We will probably ask you to do a test using only basic settings.
  • Do you experience problems during repair or unpacking?
    Enable +Debug logging in the Status and Interface settings window and share the relevant parts of the log here using [ code ] sections.
Post Reply
ScAndal
Newbie
Newbie
Posts: 1
Joined: February 5th, 2010, 9:26 pm

how to have post-processing remove all un-needed files after unpack

Post by ScAndal »

I'd like to delete all .nfo, .sff etc.. files after unpack.

I put these in the "Cleanup List" option but it doesn't delete the files after unpacking. ".nfo, .sfv, .srr"

Any help would be appreciated.

ScAndal
User avatar
shypike
Administrator
Administrator
Posts: 19773
Joined: January 18th, 2008, 12:49 pm

Re: how to have post-processing remove all un-needed files after unpack

Post by shypike »

This feature does work.
However, only directly downloaded files are deleted,
not files unpacked from RAR files.

The alternative is to wrte your own small user script.

Code: Select all

@echo off
cd /d %1
del /q *.sff *.sfv
and associate that with your categories.
Post Reply