I need to get a legible date and time of a file. I need the atime (read) and mtime(modification) time of my file, t_results.html.
I tried this:
my ($readtime, $modtime) = (stat($t_results))[8,9];
#print "$readtime \n";
#print "$modtime \n";
But I get this:
991849314
991851908
Thanks in advance,
Porshe
I tried this:
my ($readtime, $modtime) = (stat($t_results))[8,9];
#print "$readtime \n";
#print "$modtime \n";
But I get this:
991849314
991851908
Thanks in advance,
Porshe