Das ist doch kein Pfad, den du da angegeben hast... Nutze doch mal die Methode, die dir vorgeschlagen wurde!
Delphi-Quellcode:
function GetUserAppDataPath(): string;
begin
Result := SpecialFolder(CSIDL_APPDATA);
end;
var
ImageUrl : string;
DestinationPath : string;
begin
ImageUrl := 'http://img3.imagebanana.com/img/k789yl2d/AssassinsCreed_Dx102008061616351998.jpg';
DestinationPath := GetUserAppDataPath() + '\.minecraft\texturepacks';
URLDownloadToFile(nil, ImageUrl, DestinationPath, 0, nil);
end;
So, und ob DestinationPath nun ein Pfad oder eine Datei sein sollte kann ich dir leider nicht sagen. Lies dich doch aber einfach mal ein wenig ein. Hier im Forum wirst du sehr viel finden, wenn du dich nur ein wenig bemühst! Dir fehlt es ja scheinbar schon an den Grundlagen.
»Remember, the future maintainer is the person you should be writing code for, not the compiler.« (Nick Hodges)