Re: Filtering files with the File2 component

2018-02-22 Thread Meissa Sakho
It was not required to include the txt filter. I've removed it and it works. There was some errors elsewhere but the code above works. I've borrowed the example from Camel in Action 2 chapter two to handle another use case (handling extra extension). The extract of my route look like the

Re: Filtering files with the File2 component

2018-02-21 Thread Claus Ibsen
Using both include and exclude is a bit meaningless unless there are some overlaps. But here you filter on file extensions, so you cannot have something that is both xml and txt. Also mind its using regular expression syntax, so its technically .*xml$ to indicate ends with xml. On Wed, Feb

Re: Filtering files with the File2 component

2018-02-21 Thread Alex Dettinger
Hi Meissa, I've read it quickly. But, it may be that just need to include xml files and that's all: from("file:loans?include=.*xml") Regards, Alex On Wed, Feb 21, 2018 at 8:53 AM, Meissa Sakho wrote: > Hello everyone, > I need to write a route with the requirements below:

Filtering files with the File2 component

2018-02-20 Thread Meissa Sakho
Hello everyone, I need to write a route with the requirements below: 1) The route will pool a source folder and takes only files whose name ends with .xml 2) The source file content must be saved into a single journal file named loan.xml 3)If a file name ends with .txt, it should not be included