我正在做一个长循环下载数千个文件。我想显示估计的剩余时间,因为它可能需要几个小时。但是,根据我所写的,我得到了平均毫秒数。如何将此平均下载时间从毫秒转换为TDateTime
?
看看我在哪里设置Label1.Caption
:
procedure DoWork;
const
AVG_BASE = 20; //recent files to record for average, could be tweaked
var
Avg: TStringList; //for calculating average
X, Y: Integer; //loop iterators
TS, TE: DWORD; //tick counts
A: Integer; //for calculating average
begin
Avg:= TStringList.Create;
try
for X:= 0 to FilesToDownload.Count - 1 do begin //iterate through downloads
if FStopDownload then Break; //for cancelling
if Avg.Count >= AVG_BASE then //if list count is 20
Avg.Delete(0); //remove the oldest average
TS:= GetTickCount; //get time started
try
DownloadTheFile(X); //actual file download process
finally
TE:= GetTickCount - TS; //get time elapsed
end;
Avg.Add(IntToStr(TE)); //add download time to average list
A:= 0; //reset average to 0
for Y:= 0 to Avg.Count - 1 do //iterate through average list
A:= A + StrToIntDef(Avg[Y], 0); //add to total download time
A:= A div Avg.Count; //divide count to get average download time
Label1.Caption:= IntToStr(A); //<-- How to convert to TDateTime?
end;
finally
Avg.Free;
end;
end;
PS - 我对计算最近 20 次(或 AVG_BASE)下载的平均速度的不同方法持开放态度,因为我确信我的字符串列表解决方案不是最好的。我不想根据所有下载来计算它,因为速度可能会随着时间的推移而改变。因此,我只检查最后 20 个。