Registriert seit: 10. Jun 2002
Ort: Unterhaching
11.412 Beiträge
Delphi 12 Athens
|
Re: "Dateizugriff verweigert"
26. Feb 2004, 16:17
Aus der Delphi Hilfe. Diese Lösung ist nicht thread-safe!
Code:
unction FileIsThere(FileName: string): Boolean;
{ Boolean function that returns True if the file exists; otherwise,
it returns False. Closes the file if it exists. }
var
F: file;
begin
{$I-}
[color=#e30000]AssignFile(F, FileName);
[b]FileMode := 0; {Set file access to read only }[/b]
Reset(F);[/color]
CloseFile(F);
{$I+}
FileIsThere := (IOResult = 0) and (FileName <> '');
end; { FileIsThere }
... ...
Daniel Lizbeth Ich bin nicht zurück, ich tue nur so
|