Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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();
        }
share|improve this question
can you try con.changeWorkingDirectory("/facebook/profileimages"); instead of con.changeWorkingDirectory("/facebook/profileimages/"); ? – Bala R Feb 15 '11 at 0:12
What are you passing in as the "Path" parameter to con.storeFile()? – Shaun Feb 15 '11 at 0:18
@shadowfoxmi, Nothing ! – Adham Feb 15 '11 at 0:23
@Shaun , it is not the matter ..i've uploaded the file successfully .. but it uploaded to the root directory – Adham Feb 15 '11 at 0:25
@Shaun path is the path of the file that i want to upload – Adham Feb 15 '11 at 0:27
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.