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
Filebot excludes with Synology Filebot Node GUI
Re: Filebot excludes with Synology Filebot Node GUI
You can use the Ignore Rules option:

e.g. ignore any file path that contains idx or sub, easy but prone to false positives:
e.g. ignore any file path that ends with .idx or .sub:
regex: Select all
[.](idx|sub)$

e.g. ignore any file path that contains idx or sub, easy but prone to false positives:
Shell: Select all
--def ignore='idx|sub'
Shell: Select all
--def ignore='[.](idx|sub)$'
Re: Filebot excludes with Synology Filebot Node GUI
Thanks a lot! I will try that ....