我正在编写一个使用libcurl
从FTP服务器读取文件的应用程序。在阅读了有关这个库的所有内容之后,我开始知道我只能将文件从FTP服务器下载到本地机器,然后阅读它们。
我想知道libcurl中是否有任何定义,以便我只能从FTP服务器读取文件,因为我本地设备中的空间非常有限,无法存储文件。
到目前为止,这是我的方法
int establish_connection_to_ftp_server(char *uname_pass, char *url,char *filePath,char *err)
{
CURL *curl = NULL;
CURLcode res = -1;
FILE *ftpfile = NULL;
char error_disp[100] = {0};
ftpfile = fopen(filePath,"wb"); /* b is binary, needed on win32 */
if(ftpfile==NULL)
{
printf("Unable to create file\n");
return -1;
}
show_frame_progress("Establishing Connection to server...");
curl = curl_easy_init();
if(curl)
{
curl_easy_setopt(curl, CURLOPT_USERPWD, uname_pass);
curl_easy_setopt(curl, CURLOPT_URL, url);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, ftpfile);
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
curl_easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, progress_func_upload);
curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0);
curl_easy_setopt(curl, CURLOPT_TIMEOUT, 300);
res = curl_easy_perform(curl);
curl_easy_cleanup(curl);
}
fclose(ftpfile); /* close the local file */
if((int)res != 0)
{
sprintf(error_disp,"Unable to connect to server ..\nCurl Error : %d \n%s",res,curl_easy_strerror(res));
strcpy(err,error_disp);
return -1;
}
return (int)res;
}
答案 0 :(得分:1)
CURLOPT_WRITEFUNCTION
选项的默认值为fwrite
(当然,它将数据写入文件)。您可以使用与fwrite
相同的签名创建自己的函数,并将其设置为该选项的值。然后libcurl会用你下载的数据调用你的函数,你可以用它做任何你想做的事。