fpc/utils/fppkg/testdownload.pp
michael f9966bdc06 * Added program to test downloader class
git-svn-id: trunk@5213 -
2006-11-03 21:26:44 +00:00

23 lines
402 B
ObjectPascal

program testdownload;
uses
Classes,
pkgwget, // Including this sets the Downloaderclass. Replace with downloader you want...
pkgdownload;
Var
F : TFileStream;
begin
F:=TFileStream.Create('fpc.html',fmcreate);
Try
With DownloaderClass.Create(Nil) do
try
Download('http://www.freepascal.org',F);
Finally
Free;
end;
finally
F.Free;
end;
end.