Help for this page

Select Code to Download


  1. or download this
    my $atime = (stat "foo_dir")[8];
    
  2. or download this
    use File::stat;
    my $stat = stat "foo_dir";
    my $atime = $stat->atime;