Page 1 of 1

Filebot excludes with Synology Filebot Node GUI

Posted: 22 Jan 2025, 13:42
by astraub
Hi,

how can I exclude files with a certain extension (like .idx) to be transfered to the target folder and what is the syntax to use in the Filebot Node GUI on Synology NAS?

Greetings
Andreas

Re: Filebot excludes with Synology Filebot Node GUI

Posted: 22 Jan 2025, 14:08
by rednoah
You can use the Ignore Rules option:

regex: Select all

[.](idx|sub)$
Screenshot



e.g. ignore any file path that contains idx or sub, easy but prone to false positives:

Shell: Select all

--def ignore='idx|sub'
e.g. ignore any file path that ends with .idx or .sub:

Shell: Select all

--def ignore='[.](idx|sub)$'

Re: Filebot excludes with Synology Filebot Node GUI

Posted: 22 Jan 2025, 14:17
by astraub
Thanks a lot! I will try that ....