Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm doing android native app that needs to shown up all the files & folders from server end PC using login credentials & IP address.On that i can able to do some stuff over there(like copy,move,delete).I dont have any experience regarding this.How could i startup this?Give some idea.

Thanks

share|improve this question
Try to do that with JSON – Praveen Jun 1 '12 at 6:35
Any example codes are there.That will help me a lot – sanjay Jun 1 '12 at 6:36
Whats wrong with his accept rate ? it is good until it is in redish color @SpK – Lucifer Jun 1 '12 at 6:36
@Lucifer Oh okay. Thanks for your information. I'll keep this. – Praveen Jun 1 '12 at 6:38
how can i do accept rate? – sanjay Jun 1 '12 at 6:38
show 4 more comments

2 Answers

Make a request over http to your server and encode the server response in JSON format and parse the response with the JSONObject class.

Server-side example with PHP to list files in a directory

$file_id = 0;
$files = array();

if ($handle = opendir('/path/to/files')) {

    while (false !== ($entry = readdir($handle))) {
        $files[$file_id] = $entry;
        $file_id ++;
    }
    echo json_encode($files);
    closedir($handle);
}
share|improve this answer
Thanks.i can get data as values from server using JSON.But my question is that is it possible to get data as entire folders from server and able to parse? – sanjay Jun 1 '12 at 6:47
Check my new answer – AustinAllover Jun 1 '12 at 6:53
i dont want to download files from server.I just want to show up all files & folders of server from my android app.(I have permissions & credentials to access server) – sanjay Jun 1 '12 at 6:56
What server-side language are you using? – AustinAllover Jun 1 '12 at 6:59
i used server side language as Php – sanjay Jun 1 '12 at 7:06
show 1 more comment

try this and also this

this 2 will help i think.:)

Ganapathy

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.