Here is the uTorrent script I use:
filebot -script fn:amc --output "Z:/" --log-file amc.log --action copy --conflict override -non-strict --def music=n artwork=n "seriesFormat=/TV Shows/{n}/Season {s}/{n} - {s00e00} - {t}" "movieFormat=/Movies/{n} ({y})" "ut_label=%L" "ut_state=%S" "ut_title=%N" "ut_kind=%K" "ut_file=%F" "ut_dir=%D"
After download a torrent that was archived (rar), it does as it is supposed to and extracts and copies the file. In the situation when something is extracted, is there a way to delete that afterwards?
Delete after extraction
Re: Delete after extraction
Code: Select all
--def clean=y
Re: Delete after extraction
Just tried this and the script cleans the extracted folder after extr4acting but doesnt clean up the actual zip file. Is there a way to clean up the zip file as well?
Re: Delete after extraction
Have you tried the deleteAfterExtract option?Automated Media Center wrote:--def deleteAfterExtract=y Delete archives after extraction
Re: Delete after extraction
I'll give that a go. thanks!