Page 1 of 1

Magazine sorting

Posted: February 26th, 2013, 11:15 pm
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.

Re: Magazine sorting

Posted: February 27th, 2013, 2:46 pm
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.