123456789101112131415161718192021 |
- PROGRAM tbug1092;
- USES Dos;
- const
- {$Ifdef linux}
- path='/etc';
- {$else}
- path='c:\';
- {$endif}
- var
- t : text;
- BEGIN
- { create a file }
- assign(t,'tbug1092.tmp');
- rewrite(t);
- close(t);
- if FSearch('tbug1092.tmp',path)<>'tbug1092.tmp' then
- begin
- writeln('FSearch didn''t find file in the current dir!');
- halt(1);
- end;
- END.
|