使用C中的libcurl保存文件

时间:2010-08-12 19:11:00

标签: c http curl get libcurl

我正在从perl扩展到C,我正在尝试使用curl的库来简单地从远程URL保存文件,但我很难找到一个很好的例子来工作。

另外,我不确定我是否应该使用curl_easy_recv或curl_easy_perform

1 个答案:

答案 0 :(得分:6)

我发现this resource非常适合开发人员。

我用以下代码编译了下面的源代码:

gcc demo.c -o demo -I/usr/local/include -L/usr/local/lib -lcurl

基本上,它会下载一个文件并将其保存在硬盘上。

档案 demo.c

#include <curl/curl.h>
#include <stdio.h>

void get_page(const char* url, const char* file_name)
{
  CURL* easyhandle = curl_easy_init();

  curl_easy_setopt( easyhandle, CURLOPT_URL, url ) ;

  FILE* file = fopen( file_name, "w");

  curl_easy_setopt( easyhandle, CURLOPT_WRITEDATA, file) ;

  curl_easy_perform( easyhandle );

  curl_easy_cleanup( easyhandle );

  fclose(file);

}

int main()
{
  get_page( "http://blog.stackoverflow.com/wp-content/themes/zimpleza/style.css", "style.css" ) ;

  return 0;
}

此外,我相信您的问题与此类似:

Download file using libcurl in C/C++