[amc script] Force different drives for different content types

Any questions? Need some help?
Post Reply
djblazdk
Posts: 7
Joined: 03 Feb 2019, 20:57

[amc script] Force different drives for different content types

Post 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"
User avatar
rednoah
The Source
Posts: 22899
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: utorrent filebot

Post 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}"
:idea: Please read the FAQ and How to Request Help.
Post Reply