Page 1 of 1

[amc script] Force different drives for different content types

Posted: 04 Feb 2019, 21:42
by djblazdk
I have this and it will not put them in the folders i make?

Code: Select all

filebot -script fn:amc --output "I:\new" --action copy --conflict skip -non-strict --log-file amc.log --def --def movieFormat="M:/Movies/{ny}/{fn}" seriesFormat="S:/TV/{n}/{fn}" musicFormat="N:/Music/{n}/{fn}" --def subtitles=en,dk --def unsorted=y music=y "ut_label=%L" "ut_state=%S" "ut_title=%N" "ut_kind=%K" "ut_file=%F" "ut_dir=%D"

Re: utorrent filebot

Posted: 05 Feb 2019, 04:57
by rednoah
Why would it? You're explicitly instructing FileBot to use your custom format, where {fn} is the current / original filename:

Code: Select all

S:/TV/{n}/{fn}
I recommend a quick look the Format Expression manual:
https://www.filebot.net/naming.html


Presumably, you'll want to use the {plex} default and just force a different root drive:

Code: Select all

--def movieFormat="M:/{plex}" seriesFormat="S:/{plex}" musicFormat="N:/{plex}"