On Fri, 15 Feb 2002, Dermot Paikkos wrote:
> Does anyone know how to either get the ctime as a string or convert
> the interger into a date that is meaning full??
Sure:
my @stats = stat($file);
print "Create Time: ", scalar(localtime($stats[10])), "\n";
See perldoc -f localtime
-- Brett
http://www.chapelperilous.net/
------------------------------------------------------------------------
He thinks by infection, catching an opinion like a cold.
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]