You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@camel.apache.org by Suneel <ks...@gmail.com> on 2013/07/19 12:52:42 UTC

autoCreate flag check is missing in FTPOperations

// 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.