You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
284 B

#pragma once
#include <iostream>
#include <stdlib.h>
#include <stdio.h>
#include <curl/curl.h>
#include <sys/stat.h>
#include <vector>
int FtpUpload(const char* remote_file_path,
const char* local_file_path,
const char* username,
const char* password,
long timeout);