tags:

views:

37

answers:

2

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
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
You should learn how to use curl generally, either with regular libcurl or curlpp, before you learn specifics about the FTP protocol.
Reinderien
+1  A: 

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

dgnorton