ex38.pp 182 B

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