Hi,
After going through what all was available about File component ,i still
have one query regarding the working of this component
i have configured route something like this
from("file:data/csv?fileName=input-customer3.csv").to("file:data/csvoutput")
since i have specified specific file name in side the csv directory and as
per my assumptions Camel file component should try to look for this exact
file
but what i observe is that it not showing any error/exception about the file
name (i have intentionaly give wrong file name which does not exist) when
the file with specified name is not there,it keep polling the location till
i am not closing the context
Is it a intentioanly defined way of working?
is there any way camel can notify back that such file does not exist in the
specified location?
Thanks in advance