Sunday, November 8, 2015

Adding content, but keeping it out of 'Recently Added'

Sometimes when adding content your library, you might want to keep it out of the 'Recently Added List' - if you're adding older seasons or building a back-catalog.

To keep it out of Recently Added change the modified time on the files to an older date. You can do this to multiple files with a command like this:

# find . -exec touch -t 201410101010 {} \;

(-t is the time, so this dates is 10th October, 2014 10:10am)