mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-28 03:53:45 +02:00
14 lines
255 B
ObjectPascal
14 lines
255 B
ObjectPascal
Program Example26;
|
|
|
|
{ Program to demonstrate the Access function. }
|
|
|
|
Uses BaseUnix;
|
|
|
|
begin
|
|
if fpAccess ('/etc/passwd',W_OK)=0 then
|
|
begin
|
|
Writeln ('Better check your system.');
|
|
Writeln ('I can write to the /etc/passwd file !');
|
|
end;
|
|
end.
|