tags:

views:

595

answers:

2

I am working on an iPhone app for a client that needs to be able to manipulate directories on an arbitrary FTP server.

Does anybody know of any FTP libraries, frameworks, sample code that can remove directories from an FTP server?

NOTE: I have thoroughly researched CFFTP and the SimpleFTP Sample code provided by Apple and it only supports half of the FTP protocol(I don't know why there is only half of the implementation).

+1  A: 

there is an sample code for that, check taht out

FTP SAMPLE CODE

choise
As I stated in my original post, I have thoroughly researched CFFTP and the SimpleFTPSample code provided by Apple. From my understanding CFFTP only supports Upload, Download, Directory Creation and Directory Listing.Can you prove otherwise?
collin
A: 

If guess you could use cURL if you have little success with the apple sample code, see here.

Jamie Chapman
Any help on the FTP libraries I asked about?
collin
Not sure of any libraries, but I think you should be able to delete a directory/file by passing regular FTP commands via cURL, see http://linux.byexamples.com/archives/320/using-curl-to-access-ftp-server/.
Jamie Chapman