I would not do this way because reading a folder with multiple instances is just going to complicate your flow.
I would instead have a single route which reads the files and puts the content on a queue (it can be jms, amqp whatever) along with the filename as a header. Then you can have parallel processing on that queue and do parallel write to the destination folder. That will make your solution easier to handle and extend in case you need to read additional folders.