function GetFileSize2(const FileName: string): Int64;
var
SR: TSearchRec;
begin
Result := -1;
if FindFirst(FileName, faAnyFile and (not faDirectory), SR) = 0 then
try
Result := SR.Size;
finally
System.SysUtils.FindClose(SR);
end;
end;
delphi lazarus opengl
网页操作自动化, 图像分析破解,游戏开发