Hi Monks!
I have a question where I am trying to time and to log how long in a directory with a large number of files would take to open each file. I am using localtime() but I get the same time for all the files it find.
my $time = localtime();
foreach my $allfilesfound (@dir_contents) {
print "This file=$allfilesfound tooke $time to be open<br
+>";
}