mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 13:39:39 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			248 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			248 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
Program Example26;
 | 
						|
 | 
						|
{ Program to demonstrate the Access function. }
 | 
						|
 | 
						|
Uses linux;
 | 
						|
 | 
						|
begin
 | 
						|
  if Access ('/etc/passwd',W_OK) then
 | 
						|
    begin
 | 
						|
    Writeln ('Better check your system.');
 | 
						|
    Writeln ('I can write to the /etc/passwd file !');
 | 
						|
    end;
 | 
						|
end.
 |