Ik gebruik het volgende script als Folder Action voor het sorteren:
[on adding folder items to thefolder after receiving theAddedItems
set ext to {"nzb", "torrent"}
set dest to {":Volumes:_complete:", ":Volumes:_complete:"}
set n to count of ext
repeat with fle in theAddedItems
repeat with i from 1 to n
set extn to item i of ext
set this_info to info for fle
set the current_name to the name of this_info
if current_name ends with extn then
set source to quoted form of POSIX path of fle
set destfolder to quoted form of POSIX path of ((item i of dest) & current_name)
set cpy to "mv " & source & " " & destfolder
do shell script cpy
exit repeat
end if
end repeat
end repeat
end adding folder items to]
Werkt ideaal.
Je kan er ook een schilletje omheen doen en het Aggregator noemen