02-28-2018 12:58 AM
I want my file poller to poll all txt and xml files how can I specify the same in the file filter property?
*.txt && *.xml is only selecting txt files.
03-01-2018 10:51 PM
Unsure if it would work but have you try the following?
*.csv || *.xml
03-06-2018 02:49 PM
The documentation says File Poller uses GLOB pattern for the filter. Some GLOB pattern implementations use extended syntax called Brace Expansion, so try *.{csv,xml}. I haven’t tested with File Poller but it seems to work for Directory Browser.
06-13-2022 06:37 PM
@del, yes this is a workable solution for file poller too! but it depend on what pattern we are following to filter.