ftpgetinfo.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2020, 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 https://curl.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. /* <DESC>
  26. * Checks a single file's size and mtime from an FTP server.
  27. * </DESC>
  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. long filetime = -1;
  43. double filesize = 0.0;
  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. curl_easy_setopt(curl, CURLOPT_HEADERFUNCTION, throw_away);
  54. curl_easy_setopt(curl, CURLOPT_HEADER, 0L);
  55. /* Switch on full protocol/debug output */
  56. /* curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L); */
  57. res = curl_easy_perform(curl);
  58. if(CURLE_OK == res) {
  59. /* https://curl.se/libcurl/c/curl_easy_getinfo.html */
  60. res = curl_easy_getinfo(curl, CURLINFO_FILETIME, &filetime);
  61. if((CURLE_OK == res) && (filetime >= 0)) {
  62. time_t file_time = (time_t)filetime;
  63. printf("filetime %s: %s", filename, ctime(&file_time));
  64. }
  65. res = curl_easy_getinfo(curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD,
  66. &filesize);
  67. if((CURLE_OK == res) && (filesize>0.0))
  68. printf("filesize %s: %0.0f bytes\n", filename, filesize);
  69. }
  70. else {
  71. /* we failed */
  72. fprintf(stderr, "curl told us %d\n", res);
  73. }
  74. /* always cleanup */
  75. curl_easy_cleanup(curl);
  76. }
  77. curl_global_cleanup();
  78. return 0;
  79. }