I run the script:
Code: Select all
start filebot.cmd -script fn:suball "P:\Ultimate_Server\Movies" -non-strictHowever, I then get an error:
"File creation date is too far in the past"
I therefore run this script:instead:
Code: Select all
start filebot.cmd -script fn:suball "P:\Ultimate_Server\Movies" -non-strict --def maxAgeDays=300"Your maxAgeDays limit (300) is unreasonable"
To solve this, would I download the groovy script and modify this line:
Code: Select all
if (maxAgeDaysLimit && (maxAgeDays == null || maxAgeDays.toDouble() > 30)) {
return ignore(f, "Your maxAgeDays limit ($maxAgeDays) is unreasonable")Code: Select all
if (maxAgeDaysLimit && (maxAgeDays == null || maxAgeDays.toDouble() > 300)) {
return ignore(f, "Your maxAgeDays limit ($maxAgeDays) is unreasonable")For this to work, I would then need to put the modified groovy script in my Filebot directory, right?