fileupload.c 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2019, 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.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. /* <DESC>
  23. * Upload to a file:// URL
  24. * </DESC>
  25. */
  26. #include <stdio.h>
  27. #include <curl/curl.h>
  28. #include <sys/stat.h>
  29. #include <fcntl.h>
  30. int main(void)
  31. {
  32. CURL *curl;
  33. CURLcode res;
  34. struct stat file_info;
  35. curl_off_t speed_upload, total_time;
  36. FILE *fd;
  37. fd = fopen("debugit", "rb"); /* open file to upload */
  38. if(!fd)
  39. return 1; /* can't continue */
  40. /* to get the file size */
  41. if(fstat(fileno(fd), &file_info) != 0)
  42. return 1; /* can't continue */
  43. curl = curl_easy_init();
  44. if(curl) {
  45. /* upload to this place */
  46. curl_easy_setopt(curl, CURLOPT_URL,
  47. "file:///home/dast/src/curl/debug/new");
  48. /* tell it to "upload" to the URL */
  49. curl_easy_setopt(curl, CURLOPT_UPLOAD, 1L);
  50. /* set where to read from (on Windows you need to use READFUNCTION too) */
  51. curl_easy_setopt(curl, CURLOPT_READDATA, fd);
  52. /* and give the size of the upload (optional) */
  53. curl_easy_setopt(curl, CURLOPT_INFILESIZE_LARGE,
  54. (curl_off_t)file_info.st_size);
  55. /* enable verbose for easier tracing */
  56. curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
  57. res = curl_easy_perform(curl);
  58. /* Check for errors */
  59. if(res != CURLE_OK) {
  60. fprintf(stderr, "curl_easy_perform() failed: %s\n",
  61. curl_easy_strerror(res));
  62. }
  63. else {
  64. /* now extract transfer info */
  65. curl_easy_getinfo(curl, CURLINFO_SPEED_UPLOAD_T, &speed_upload);
  66. curl_easy_getinfo(curl, CURLINFO_TOTAL_TIME_T, &total_time);
  67. fprintf(stderr, "Speed: %" CURL_FORMAT_CURL_OFF_T " bytes/sec during %"
  68. CURL_FORMAT_CURL_OFF_T ".%06ld seconds\n",
  69. speed_upload,
  70. (total_time / 1000000), (long)(total_time % 1000000));
  71. }
  72. /* always cleanup */
  73. curl_easy_cleanup(curl);
  74. }
  75. fclose(fd);
  76. return 0;
  77. }