are there any good books/tutorials decscribing how to use CURL library under C++ to implement FTP / SFTP clients ? Thx for help.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

For the C++ bindings for CURL, see the docs at http://curlpp.org/ . There are extensive examples there; no need to get a book (in all likelihood).

link|improve this answer
Thanks. I'm trying to find examples of how to: chdir,mkdir,mv,rm,ls. I can't find any of that on this page. Maybe i should first read about libcurl and then jump to curlpp ? – Seba Sep 24 '10 at 17:09
2  
You should learn how to use curl generally, either with regular libcurl or curlpp, before you learn specifics about the FTP protocol. – Reinderien Sep 24 '10 at 21:16
feedback

I found the libcurl docs to be sufficient. There are a couple examples of FTP in C here.

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.