I have the follwoing code, with ftp host :ftp.aydeena.com but don't want to upload files to the root directory . as i want to upload it to the following path :
ftp.aydeena.com/facebook/profileimages/
How can i do that ?
FTPClient con = new FTPClient();
String status="";
try{
con.connect("ftp.aydeena.com");
if (con.login("user", "pass")){
con.enterLocalPassiveMode(); // important!
con.changeWorkingDirectory("/facebook/profileimages/");
String data = "test data";
ByteArrayInputStream in = new ByteArrayInputStream(data.getBytes());
boolean result = con.storeFile(Path, in);
in.close();
if (result) Log.v("upload result", "succeeded");
status ="succeeded" ;
con.logout();
con.disconnect();
}
}
catch (Exception e){
e.printStackTrace();
status= "Error : "+e.getMessage();
}