1CURLINFO_CONTENT_LENGTH_DOWNcLuOrAlD_(e3a)sy_getinfoCUoRpLtIiNoFnOs_CONTENT_LENGTH_DOWNLOAD(3)
2
3
4
6 CURLINFO_CONTENT_LENGTH_DOWNLOAD - get content-length of download
7
9 #include <curl/curl.h>
10
11 CURLcode curl_easy_getinfo(CURL *handle, CURLINFO_CONTENT_LENGTH_DOWNLOAD,
12 double *content_length);
13
15 Pass a pointer to a double to receive the content-length of the down‐
16 load. This is the value read from the Content-Length: field. Since
17 7.19.4, this returns -1 if the size is not known.
18
19 CURLINFO_CONTENT_LENGTH_DOWNLOAD_T(3) is a newer replacement that re‐
20 turns a more sensible variable type.
21
23 HTTP(S)
24
26 CURL *curl = curl_easy_init();
27 if(curl) {
28 curl_easy_setopt(curl, CURLOPT_URL, "https://example.com");
29
30 /* Perform the request */
31 res = curl_easy_perform(curl);
32
33 if(!res) {
34 /* check the size */
35 double cl;
36 res = curl_easy_getinfo(curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &cl);
37 if(!res) {
38 printf("Size: %.0f\n", cl);
39 }
40 }
41 }
42
44 Added in 7.6.1. Deprecated since 7.55.0.
45
47 Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION
48 if not.
49
51 curl_easy_getinfo(3), curl_easy_setopt(3), CURLINFO_CONTENT_LENGTH_UP‐
52 LOAD(3),
53
54
55
56libcurl 8.0.1 January 02, 2C0U2R3LINFO_CONTENT_LENGTH_DOWNLOAD(3)