Help for this page

Select Code to Download


  1. or download this
     use File::stat;
     $st = stat($file) or die "No $file: $!";
     printf "Size: %d, mtime: %d", $st->size(), localtime($st->mtime());