"Archiving Old"/Moving Media By Year

Running FileBot from the console, Groovy scripting, shell scripts, etc
Post Reply
timmotee
Posts: 9
Joined: 11 Mar 2018, 15:13

"Archiving Old"/Moving Media By Year

Post by timmotee »

For the purpose of space conservation, I would like to be able to use filebot to move all movies and TV episodes based on their release date. For example movies from before 2010 move to a different directory/disk - all TV episodes from before 2015 move to the different directory/disk.

Does anyone know an easy way to do this? I couldn't find it any methods with the search function.

Thanks
User avatar
rednoah
The Source
Posts: 22986
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: "Archiving Old"/Moving Media By Year

Post by rednoah »

The command-line examples cover this exact use case:
viewtopic.php?f=4&t=4788

rednoah wrote: 26 Feb 2017, 19:36 Move old movies:

Code: Select all

filebot -rename -r . --db xattr --output 'Old Movies' --filter 'movie && y < 1970'

Note that --db xattr only works if the files have previously been processed with FileBot and if xattr metadata has been set.
:idea: Please read the FAQ and How to Request Help.
timmotee
Posts: 9
Joined: 11 Mar 2018, 15:13

Re: "Archiving Old"/Moving Media By Year

Post by timmotee »

Please pardon the poor research skills - that works, thanks very much for the response!
User avatar
rednoah
The Source
Posts: 22986
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: "Archiving Old"/Moving Media By Year

Post by rednoah »

Not to worry. FileBot is a mysterious beast. Even I often discover new things it can do simply combining existing features in novel ways. :lol:
:idea: Please read the FAQ and How to Request Help.
Post Reply