2
0

testdownload.pp 399 B

1234567891011121314151617181920212223
  1. program testdownload;
  2. uses
  3. Classes,
  4. pkgwget, // Including this sets the Downloaderclass. Replace with downloader you want...
  5. pkgdownload;
  6. Var
  7. F : TFileStream;
  8. begin
  9. F:=TFileStream.Create('fpc.html',fmcreate);
  10. Try
  11. With DownloaderClass.Create(Nil) do
  12. try
  13. Download('http://www.freepascal.org',F);
  14. Finally
  15. Free;
  16. end;
  17. finally
  18. F.Free;
  19. end;
  20. end.