![]() |
![]()
| ![]() |
![]()
NAMECURLOPT_FILETIME - get the modification time of the remote resource SYNOPSIS#include <curl/curl.h> CURLcode curl_easy_setopt(CURL *handle, CURLOPT_FILETIME, long gettime); DESCRIPTIONPass a long. If it is 1, libcurl attempts to get the modification time of the remote document in this operation. This requires that the remote server sends the time or replies to a time querying command. The curl_easy_getinfo(3) function with the CURLINFO_FILETIME(3) argument can be used after a transfer to extract the received time (if any). DEFAULT0 PROTOCOLSThis functionality affects file, ftp, http, sftp and smb EXAMPLEint main(void) { AVAILABILITYAdded in curl 7.5 RETURN VALUEcurl_easy_setopt(3) returns a CURLcode indicating success or error. CURLE_OK (0) means everything was OK, non-zero means an error occurred, see libcurl-errors(3). SEE ALSOCURLINFO_FILETIME(3), curl_easy_getinfo(3)
|