url2file.c 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. *
  10. * This software is licensed as described in the file COPYING, which
  11. * you should have received as part of this distribution. The terms
  12. * are also available at http://curl.haxx.se/docs/copyright.html.
  13. *
  14. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. * copies of the Software, and permit persons to whom the Software is
  16. * furnished to do so, under the terms of the COPYING file.
  17. *
  18. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. * KIND, either express or implied.
  20. *
  21. ***************************************************************************/
  22. #include <stdio.h>
  23. #include <stdlib.h>
  24. #include <unistd.h>
  25. #include <curl/curl.h>
  26. static size_t write_data(void *ptr, size_t size, size_t nmemb, void *stream)
  27. {
  28. size_t written = fwrite(ptr, size, nmemb, (FILE *)stream);
  29. return written;
  30. }
  31. int main(int argc, char *argv[])
  32. {
  33. CURL *curl_handle;
  34. static const char *pagefilename = "page.out";
  35. FILE *pagefile;
  36. if(argc < 2 ) {
  37. printf("Usage: %s <URL>\n", argv[0]);
  38. return 1;
  39. }
  40. curl_global_init(CURL_GLOBAL_ALL);
  41. /* init the curl session */
  42. curl_handle = curl_easy_init();
  43. /* set URL to get here */
  44. curl_easy_setopt(curl_handle, CURLOPT_URL, argv[1]);
  45. /* Switch on full protocol/debug output while testing */
  46. curl_easy_setopt(curl_handle, CURLOPT_VERBOSE, 1L);
  47. /* disable progress meter, set to 0L to enable and disable debug output */
  48. curl_easy_setopt(curl_handle, CURLOPT_NOPROGRESS, 1L);
  49. /* send all data to this function */
  50. curl_easy_setopt(curl_handle, CURLOPT_WRITEFUNCTION, write_data);
  51. /* open the file */
  52. pagefile = fopen(pagefilename, "wb");
  53. if (pagefile) {
  54. /* write the page body to this file handle */
  55. curl_easy_setopt(curl_handle, CURLOPT_WRITEDATA, pagefile);
  56. /* get it! */
  57. curl_easy_perform(curl_handle);
  58. /* close the header file */
  59. fclose(pagefile);
  60. }
  61. /* cleanup curl stuff */
  62. curl_easy_cleanup(curl_handle);
  63. return 0;
  64. }