Also mit dieser Procedure lade ich Dateien runter :
Delphi-Quellcode:
procedure Downloaden(Datei :
String; Dest :
String);
var
Download: TFilestream;
begin
Download := TFileStream.Create(Dest,fmCreate);
try
try
Form1.IDHTTP1.Get(
Url + Datei, download);
except
ShowMessage('
Download fehlgeschlagen !');
end;
finally
Download.Free;
end;
end;
Das ging auch aber plötzlich kann ich nur noch Textdateien runterladen.
Ich verzweifele noch