ftpgetinfo.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2011, 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 <string.h>
  24. #include <curl/curl.h>
  25. /*
  26. * This is an example showing how to check a single file's size and mtime
  27. * from an FTP server.
  28. */
  29. static size_t throw_away(void *ptr, size_t size, size_t nmemb, void *data)
  30. {
  31. (void)ptr;
  32. (void)data;
  33. /* we are not interested in the headers itself,
  34. so we only return the size we would have saved ... */
  35. return (size_t)(size * nmemb);
  36. }
  37. int main(void)
  38. {
  39. char ftpurl[] = "ftp://ftp.example.com/gnu/binutils/binutils-2.19.1.tar.bz2";
  40. CURL *curl;
  41. CURLcode res;
  42. const time_t filetime;
  43. const double filesize;
  44. const char *filename = strrchr(ftpurl, '/') + 1;
  45. curl_global_init(CURL_GLOBAL_DEFAULT);
  46. curl = curl_easy_init();
  47. if(curl) {
  48. curl_easy_setopt(curl, CURLOPT_URL, ftpurl);
  49. /* No download if the file */
  50. curl_easy_setopt(curl, CURLOPT_NOBODY, 1L);
  51. /* Ask for filetime */
  52. curl_easy_setopt(curl, CURLOPT_FILETIME, 1L);
  53. /* No header output: TODO 14.1 http-style HEAD output for ftp */
  54. curl_easy_setopt(curl, CURLOPT_HEADERFUNCTION, throw_away);
  55. curl_easy_setopt(curl, CURLOPT_HEADER, 0L);
  56. /* Switch on full protocol/debug output */
  57. /* curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L); */
  58. res = curl_easy_perform(curl);
  59. if(CURLE_OK == res) {
  60. /* http://curl.haxx.se/libcurl/c/curl_easy_getinfo.html */
  61. res = curl_easy_getinfo(curl, CURLINFO_FILETIME, &filetime);
  62. if((CURLE_OK == res) && filetime)
  63. printf("filetime %s: %s", filename, ctime(&filetime));
  64. res = curl_easy_getinfo(curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &filesize);
  65. if((CURLE_OK == res) && (filesize>0))
  66. printf("filesize %s: %0.0f bytes\n", filename, filesize);
  67. } else {
  68. /* we failed */
  69. fprintf(stderr, "curl told us %d\n", res);
  70. }
  71. /* always cleanup */
  72. curl_easy_cleanup(curl);
  73. }
  74. curl_global_cleanup();
  75. return 0;
  76. }