![]() |
Get resource info with HTTP
I need to know remote file length and time, so I wrote with WinInet:
Delphi-Quellcode:
and in another function:
var
hInet, hURL: HINTERNET; BufferLength: Cardinal; Reserved: Cardinal; begin Result := 0; Reserved := 0; hInet := InternetOpen(PChar(AUserAgent), INTERNET_OPEN_TYPE_PRECONFIG, nil, nil, 0); if hInet <> nil then try hURL := InternetOpenUrl(hInet, PChar(AURL), nil, 0, 0, 0); if hURL <> nil then try BufferLength := SizeOf(Result); HttpQueryInfo(hURL, HTTP_QUERY_CONTENT_LENGTH or HTTP_QUERY_FLAG_NUMBER, @Result, BufferLength, Reserved); finally InternetCloseHandle(hURL); end; finally InternetCloseHandle(hInet) end; end;
Delphi-Quellcode:
I also did it with Indy:
HTTP_QUERY_LAST_MODIFIED or HTTP_QUERY_FLAG_SYSTEMTIME
Delphi-Quellcode:
API version (one function call in the same time, not both) is noticeably slower than VCL.
TIdHTTP.Head();
1. How to do it faster in API? 2. Is possible get more data by one HttpQueryInfo() or have to use one call for one HTTP response field? |
Alle Zeitangaben in WEZ +1. Es ist jetzt 03:26 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz