Up |
Gets the last date of a file access.
fun [P] [I I I I I I I I]
Return : [I I I I I I I I] the date or nil if error
In the tuple :
fun main ()=
_showconsole;
let _getmodifdate _checkpack "tests/kernel/files/lastmodified.pkg" -> [y m d _ h mn _ _] in
(
_fooS strcat "year = " itoa y;
_fooS strcat "month = " itoa m;
_fooS strcat "day = " itoa d;
_fooS strcat "hour = " itoa h;
_fooS strcat "minute = " itoa mn;
);
0;;