Hello I have this code and don’t download anything…
FTPHelper *ftp;
ftp.urlString = @"ftp.marignal.com";
ftp.uname = @"whttpapp.marignal.com";
ftp.pword = @"hidden";
ftp.filePath = @"Barcos/Imagenes";
[ftp download:@"catlanza.bmp"];
I’m using this lib: https://github.com/erica/iphone-3.0-cookbook-/tree/master/C13-Networking/15-FTP%20Helper
That method download, It suppose to install the selected file in Documents directory…
Look in the simulator for the path it copied to.
Likely you need to tack on Documents:
http://ftp.filePath = @”Documents/Barcos/Imagenes”;
Or get the path programmatically:
What is the documents directory (NSDocumentDirectory)?