Download files with NSURL

Posted by Ishwar on Stack Overflow See other posts from Stack Overflow or by Ishwar
Published on 2012-10-10T03:09:20Z Indexed on 2012/10/10 3:37 UTC
Read the original article Hit count: 229

Filed under:
|
|
|

I am trying to download a list of files from a ftp server using:

NSURL *ftpUrl = [NSURL URLWithString:@"ftp://xxx:[email protected]"];

I HAVE to use FTP, so please do not recommend an alternative. I want to know how to get the list of files from the root directory and also navigate inside folders (of FTP server).

P.S: I do not think external library would be required to accomplish such an easy task, but if I must, any recommendations would be appreciated.

Thank You :)

© Stack Overflow or respective owner

Related posts about iphone

Related posts about objective-c