Hier ist mal die einfachste Art eine Datei über http oder https herunterzuladen:
Delphi-Quellcode:
uses UrlMon;
// Unit UrlMon muss eingebunden werden
function DownLoadInternetFile(
const SourceUrl, DestFilename :
String): Boolean;
const S_OK = 0;
begin
Result := URLDownloadToFile(
nil,PChar(SourceUrl),PChar(DestFilename),0,
nil) = S_OK;
end;
procedure Beispiel;
begin
if DownLoadInternetFile('
http://meinDings.jimdo.de/Software.zip', '
C:\software.zip')
then
ShowMessage('
download war ok');
end;