mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-01 00:10:00 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			272 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			272 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example36;
 | |
| 
 | |
| { This program demonstrates the FileAge function }
 | |
| 
 | |
| Uses sysutils;
 | |
| 
 | |
| Var S : TDateTime;
 | |
|     fa : Longint;
 | |
| Begin
 | |
|   fa:=FileAge('ex36.pp');
 | |
|   If Fa<>-1 then
 | |
|     begin
 | |
|     S:=FileDateTodateTime(fa);
 | |
|     Writeln ('I''m from ',DateTimeToStr(S))
 | |
|     end;
 | |
| End. | 
