0

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

Sebastian Dusza
  • 2,470
  • 2
  • 30
  • 54

2 Answers2

1

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
  • 11,755
  • 5
  • 49
  • 77
  • 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 ? – Sebastian Dusza 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
1

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

dgnorton
  • 2,237
  • 16
  • 12