AMC unsorted folder as Movies or TV Series?

Running FileBot from the console, Groovy scripting, shell scripts, etc
Post Reply
aj1216
Posts: 7
Joined: 13 Jul 2015, 10:17

AMC unsorted folder as Movies or TV Series?

Post by aj1216 »

In --def unsortedFormat:
1. Is it possible to add Movies or TV Series to the filename/folder based on the amc recognition?
2. Or use the original folder structure to define the above? Original structure is:
/home/aj/qBittorrent/Finished/Movie
/home/aj/qBittorrent/Finished/Series
/home/aj/qBittorrent/Finished/Manual
User avatar
rednoah
The Source
Posts: 23932
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: AMC unsorted folder as Movies or TV Series?

Post by rednoah »

1.
No, because unsorted files are files where auto-detection has failed already. You can have your own filename-based heuristics in your unsorted format of course.

e.g.

Code: Select all

file.isEpisode() ? 'Episode' : 'Not an Episode'

2.
You can pass in your own unsorted format so you have access to the current path and retain the bits and pieces you want.

e.g.

Code: Select all

folder.name
:idea: Please read the FAQ and How to Request Help.
aj1216
Posts: 7
Joined: 13 Jul 2015, 10:17

Re: AMC unsorted folder as Movies or TV Series?

Post by aj1216 »

Thanks, will try those..
Post Reply