Magazine sorting

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
DingHo
Newbie
Newbie
Posts: 10
Joined: October 1st, 2010, 4:15 am

Magazine sorting

Post by DingHo »

I'd like to sort my magazine downloads into 1 directory, ie. \media\magazines

I have a category named magazines, and they are successfully being extracted in \media\magazine\MagName\Magname.pdf

1) I prefer not to have the extra \MagName\ directory created.
2) I only want to keep the .pdf file, and delete everything else. I see under Config\General there is a cleanup list, but this affects all categories (?) and I don't know if "NOT *.pdf" is supported.


Any help is appreciated.
User avatar
shypike
Administrator
Administrator
Posts: 19774
Joined: January 18th, 2008, 12:49 pm

Re: Magazine sorting

Post by shypike »

For 1) adjust your Sort expression.
For 2) you'll need to create a simple user script and add that to the category.

Example script for Windows:

Code: Select all

@echo off
cd %1
del *.bla *.txt
You get the idea.
Post Reply