// No check is added before creating directories. 
if (endpoint.isAutoCreate()){
        success = client.makeDirectory(directory);
}
if (!success) {
   // we are here if the server side doesn't create intermediate folders so
create the folder one by one
   // Added autoCreate check
if (endpoint.isAutoCreate()){
   success = buildDirectoryChunks(directory);
}
 }



--
View this message in context: 
http://camel.465427.n5.nabble.com/autoCreate-flag-check-is-missing-in-FTPOperations-tp5735901.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to