I want to write a cocoa application that checks if my ftp server is still up and running. So far I learned that CFFTP could be used but this is not object oriented code so a no go for me. Also some people recommend ConnectionKit but that won't build on 10.7. So my idea was to use terminal commands in my application with the help of NSTask. The problem is: there are multiple commands that need to be executed, the first being ftp ftp.foobar.com. Then I need to check if the response is ok or not. After that I will have to put in my username and password and also evaluate that output of that.

Does anyone know how the entire ftp connection handshake can be accomplished in Objective C via NSTask?

link|improve this question
Did you look at NSURLConnection and friends? – sbooth Dec 31 '11 at 15:35
What do you mean by "CFFTP could be used but this is not object oriented code so a no go for me". Why? What's the problem with using a C API? – Rob Keniger Jan 1 at 3:15
feedback

1 Answer

up vote 0 down vote accepted

You could run

ftp -N /path/to/a/netrcfile

and try to parse the output.

I agree with @Rob Keniger in the comments, though - why not go for the C API? I am sure there is plenty of sample code out there to learn[*] from.

[*] Read: copy, then try to figure out why it does what it does

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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