Filebot excludes with Synology Filebot Node GUI

Support for Synology NAS, QNAP NAS and other Embedded Linux systems
Post Reply
astraub
Posts: 5
Joined: 08 Dec 2022, 19:30

Filebot excludes with Synology Filebot Node GUI

Post 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
User avatar
rednoah
The Source
Posts: 23922
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Filebot excludes with Synology Filebot Node GUI

Post 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)$'
:idea: Please read the FAQ and How to Request Help.
astraub
Posts: 5
Joined: 08 Dec 2022, 19:30

Re: Filebot excludes with Synology Filebot Node GUI

Post by astraub »

Thanks a lot! I will try that ....
Post Reply