mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 12:09:30 +02: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. |