mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-02 12:19:28 +01:00
28 lines
438 B
ObjectPascal
28 lines
438 B
ObjectPascal
{$ifdef fpc}{$mode objfpc}{$endif}
|
|
|
|
uses
|
|
sysutils;
|
|
|
|
const
|
|
fname = 'tw1479.tmp';
|
|
|
|
ThisDir = '.'+DirectorySeparator;
|
|
var
|
|
fn : string;
|
|
f : text;
|
|
begin
|
|
assign(f,fname);
|
|
rewrite(f);
|
|
writeln(f,'hello');
|
|
close(f);
|
|
|
|
fn:=FileSearch(fname,PathSeparator);
|
|
writeln('found: ',fn);
|
|
if fn<>fname then
|
|
halt(1);
|
|
fn:=FileSearch(ThisDir+fname,PathSeparator);
|
|
writeln('found: ',fn);
|
|
if fn<>ThisDir+fname then
|
|
halt(1);
|
|
end.
|