Movies in Genre Folders (Shortcut)

Running FileBot from the console, Groovy scripting, shell scripts, etc
Post Reply
erik
Posts: 6
Joined: 19 Aug 2015, 12:29

Movies in Genre Folders (Shortcut)

Post by erik »

Hey,

sorry for my bad english...

is it possible to categorize Movies via Shortcut into Genres? I wil not move the Orginal Files, only make an Shortcut/Hyperlink to the orginal file.

Image

Deutsch:

Ist es möglich Filme zusätzlich mit Verknüpfungen zu Kategoriesieren? Ich möchte gerne von A-Z und Genres Ordner erstellen und dort automatisch mit Filebot die Filme via Verknüpfung einordnen.

danke :)
kim
Power User
Posts: 1251
Joined: 15 May 2014, 16:17

Re: Movies in Genre Folders (Shortcut)

Post by kim »

you can use something like this in F2 mode

Code: Select all

{fn.match(/(?:^.*\()(\w+)(?:.+\)$)/)}
or

Code: Select all

{folder.name.match(/(?:^.*\()(\w+)(?:.+\)$)/)}
viewtopic.php?t=2072
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Movies in Genre Folders (Shortcut)

Post by rednoah »

I recommend making a primary structure with Y:/Media/{plex} as format, and then based on that you can easily mirror many file and folder structures (e.g. using F2 mode since it's going to be quicker) using any other format of your choosing.

:idea: You'll want to use hardlink instead of copy for that of course, since we just want to duplicate the file system entry, not the physical data on disk.

:idea: If Y: is a NTFS drive, then you can use hardlinks and symlinks. If it's a FAT drive, or a network drive, then you're out of luck and can't create file system links of any kind.

:idea: https://en.wikipedia.org/wiki/Hard_link#Example
:idea: Please read the FAQ and How to Request Help.
erik
Posts: 6
Joined: 19 Aug 2015, 12:29

Re: Movies in Genre Folders (Shortcut)

Post by erik »

Tanks :mrgreen:
Post Reply