Habe ich gerade geguckt: Ich habe Vollzugriff.
Das verrückte ist:
Delphi-Quellcode:
ini := TIniFile.Create(ExtractFilepath(ParamStr(0)) + '
_appdata' + '
\' + '
Watch.ini');
try
XMLFile := ini.ReadString('
Settings', '
XMLFile', '
');
finally
FreeAndNil(ini);
end;
if not FileExists(XMLFile)
then
begin
MessageBox(
Handle, PChar(Format(rsFileNotFound, [s])), PChar(APPNAME), MB_ICONSTOP);
Exit;
end;
Hier greife ich mit den gleichen Pfad auf die Ini Datei zu und es klappt. Hier funktioniert auch
FileExists richtig.