ftpclient-cpp
ftpclient-cpp copied to clipboard
C++ client for making FTP requests
If I use DownloadWildcard() together with a ProgressCallback, the given progress is always just showing the progress of the currently downloaded file and not of the overall progress. So if...
+ most of include directives should be placed in the CPP file
You can add on top of FTPClient.h, right after FTPCLIENT_VERSION define: ` #ifdef QT_CORE_LIB #include #ifdef Q_OS_LINUX #define LINUX #endif #ifdef Q_OS_WINDOWS #define WINDOWS #endif #endif `
@embeddedmz This is nice ftpclient and I think it would be nice to add it as reciepe to conan repo [Conan](https://conan.io/center/). What do you think?
hi, embeddedmz! thank for share the great proj, i want to know which curl version is to used, i test the newest curl version 8.4.0, but the DownloadWildcard failed and...
```c++ std::string folder = "pictures"; std::string filelist; ftp.List(folder, filelist); ``` if i call the List interface like this, i can't get expected results, the auctual results filelist is one level...
Hi! @embeddedmz Im working with c++ code in Ubuntu and want to upload files/images to my FTP server. See attached images. How could I solve this? I have installed libcurl....
Hello, are there any plans of implementing a parallelization with curl multi handles? I am especially interested in parallel upload (I have 6 directories with ~800 files each so doing...