Hey there,
I have written a method to download a file by URL.
procedure DownloadFile(URL, SaveTo: String);
var
Http: THTTPSend;
begin
Http := THTTPSend.Create;
try
if Http.HTTPMethod('GET', URL) then
Http.Document.SaveToFile(SaveTo)
finally
Http.Free
end;
end;
My question is: How can I determine the download speed?
-----
Greetings
Daniel
------------------------------------------------------------------------------
_______________________________________________
synalist-public mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/synalist-public