Hello, are there any good books/tutorials decscribing how to use CURL library under C++ to implement FTP / SFTP clients ? Thx for help.
+1
A:
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).
Reinderien
2010-09-24 15:06:06
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
2010-09-24 17:09:33
You should learn how to use curl generally, either with regular libcurl or curlpp, before you learn specifics about the FTP protocol.
Reinderien
2010-09-24 21:16:07
+1
A:
I found the libcurl docs to be sufficient. There are a couple examples of FTP in C here.
dgnorton
2010-09-24 15:08:31