Re: Filtering with File component again

2018-03-06 Thread Meissa Sakho
And it works like a charm :-) Thank you claus. Meissa 2018-03-06 10:52 GMT+01:00 Claus Ibsen : > Hi > > You can just tell Camel to only include the XML files, > > from("file:loans?include=.*xml") > > Mind that include is using java regular expression, so its .* to > indicate any kind of characht

Re: Filtering with File component again

2018-03-06 Thread Claus Ibsen
Hi You can just tell Camel to only include the XML files, from("file:loans?include=.*xml") Mind that include is using java regular expression, so its .* to indicate any kind of charachters and then ending with xml. https://github.com/apache/camel/blob/master/camel-core/src/main/docs/file-compo