可能重复:
programatically get the file size from a remote file using delphi, before download it.
说我有一个本地文件:
C:\ file.txt的
网上有一个:
如何检查尺寸是否不同,如果它们不同则//做某事?
感谢。
答案 0 :(得分:8)
要获取Internet上文件的文件大小,请执行
function WebFileSize(const UserAgent, URL: string): cardinal;
var
hInet, hURL: HINTERNET;
len: cardinal;
index: cardinal;
begin
result := cardinal(-1);
hInet := InternetOpen(PChar(UserAgent),
INTERNET_OPEN_TYPE_PRECONFIG,
nil,
nil,
0);
index := 0;
if hInet <> nil then
try
hURL := InternetOpenUrl(hInet, PChar(URL), nil, 0, 0, 0);
if hURL <> nil then
try
len := sizeof(result);
if not HttpQueryInfo(hURL,
HTTP_QUERY_CONTENT_LENGTH or HTTP_QUERY_FLAG_NUMBER,
@result,
len,
index) then
RaiseLastOSError;
finally
InternetCloseHandle(hURL);
end;
finally
InternetCloseHandle(hInet)
end;
end;
例如,您可以尝试
ShowMessage(IntToStr(WebFileSize('Test Agent',
'http://privat.rejbrand.se/test.txt')));
要获取本地文件的大小,最简单的方法是FindFirstFile
并阅读TSearchRec
。但是,稍微优雅一点
function GetFileSize(const FileName: string): cardinal;
var
f: HFILE;
begin
result := cardinal(-1);
f := CreateFile(PChar(FileName),
GENERIC_READ,
0,
nil,
OPEN_EXISTING,
FILE_ATTRIBUTE_NORMAL,
0);
if f <> 0 then
try
result := Windows.GetFileSize(f, nil);
finally
CloseHandle(f);
end;
end;
现在你可以做到
if GetFileSize('C:\Users\Andreas Rejbrand\Desktop\test.txt') =
WebFileSize('UA', 'http://privat.rejbrand.se/test.txt') then
ShowMessage('The two files have the same size.')
else
ShowMessage('The two files are not of the same size.')
注意:如果在您的情况下仅使用32位来表示文件大小是不够的,您需要对上述两个函数进行一些小的更改。
答案 1 :(得分:4)
您可以为该文件发出HTTP HEAD请求,并检查Content-Length标头。