mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 17:31:42 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			182 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			182 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example38;
 | |
| 
 | |
| { This program demonstrates the FileExists function }
 | |
| 
 | |
| Uses sysutils;
 | |
| 
 | |
| Begin
 | |
|   If FileExists(ParamStr(0)) Then
 | |
|     Writeln ('All is well, I seem to exist.');
 | |
| End. | 
