Gute Abend,
das angehängte Programm führt diesen Code aus:
Delphi-Quellcode:
program simple;
{$APPTYPE CONSOLE}
uses curlobj;
var
Curl: TCurl;
begin
Curl := TCurl.Create(nil);
Curl.URL := 'http://curl.haxx.se/';
Curl.OutputFile := 'curl.html';
if not Curl.Perform then
WriteLn(Curl.ErrorString);
Curl.Free;
end.
Es legt die Datei curl.html mit Inhalt an.
Erstellt mit Delphi XE Trial.
P.S. Ist das neu in Delphi XE, dass ein Debug\
Win32 Verzeichnis unterhalb des Projektordners angelegt wird? Hat das einen tieferen Sinn?
Grüße
Klaus