home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ipo-101.zip / Samples.zip / DIRPAS.PAS < prev    next >
Pascal/Delphi Source File  |  1998-11-15  |  290b  |  14 lines

  1. program dirpas(output);
  2. begin
  3.    case platform of
  4.    platform_linux:
  5.       exec('ls -l', '*.pas');
  6.    platform_fbsd:
  7.       exec('ls -l', '*.pas');
  8.    otherwise
  9.       exec('dir', '*.pas');
  10.    end;
  11.    if exitcode <> 0 then
  12.       writeln('Error listing directory', exitcode)
  13. end.
  14.