我正在使用以下代码检查 http 服务器上的文件是否存在。但我正在获取CURLE_COULDNT_CONNECT
代码。谁能告诉我如何使用 lib curl 检查文件是否存在?
curl_easy_setopt(curl, CURLOPT_URL, "http://www.thekevindolan.com/wp-content/uploads/2010/02/15_19_1-Tree-Sunrise-Northumberland_web.jpg");
curl_easy_setopt(curl, CURLOPT_NOBODY, 1L);
/* Do not do the transfer - only connect to host */
curl_easy_setopt(curl, CURLOPT_CONNECT_ONLY, 1L);
CURLcode res = curl_easy_perform(curl);