Mohamed Amine Mzoughi
Mohamed Amine Mzoughi
Hello, First of all, you must put your code inside a function (ex: int main() { // put code here }). I ll try to give you an example before...
@victoriastraberg I tested this example with an FTP server hosted at 192.168.1.17:21 on my local network and a user account named "test" with a password "0123456789C++" : ``` #include "FTPClient.h"...
LINUX preprocessor macro must be defined because in the header file there's these preprocessor instructions ``` #ifndef LINUX // If LINUX macro is NOT defined (e.g. we are compiling on...
You can specify the absolute path to the file e.g. "/home/user/test_upload.txt". In the example above, I used a relative path but you can also use absolute paths. Example : `ftpClient.UploadFile("/home/user/test_upload.txt",...
Can you show me the code using the upload() function ? (by the way, you don't need to use c_str() method when concatenating strings and when using UploadFile()). I want...
On Ubuntu, I have reached 274 : 

Hi, I will look into this when I have time.
Hi, All the games are buggy and/or incomplete, with the exception of Tetris, which I've maintained and play often.
With httpclient-cpp (or even libcurl, the library on which this project is based on), you will need to create different execution threads. In each thread, you will be using a...