fpc/docs/sysutex/ex38.pp
1999-05-14 22:02:23 +00:00

10 lines
182 B
ObjectPascal

Program Example38;
{ This program demonstrates the FileExists function }
Uses sysutils;
Begin
If FileExists(ParamStr(0)) Then
Writeln ('All is well, I seem to exist.');
End.