Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Async FTP Library

Tags:

c++

c

ftp

Is there any cross platform and asynchronous FTP client library for C or C++?

Thanks.

like image 960
Alon Gubkin Avatar asked Dec 17 '22 20:12

Alon Gubkin


1 Answers

What about libcurl? It's well-known, widely-used, and supports async FTP. I would imagine it's cross-platform as well.

As a bonus, it's a much smaller library to link against than, e.g., all of Qt.

like image 89
Conrad Meyer Avatar answered Dec 28 '22 09:12

Conrad Meyer