Help for this page

Select Code to Download


  1. or download this
    my @stat = stat $filename;
    say $stat[5];
    
  2. or download this
    use File::stat;
    my $stat_obj = stat $filename;
    print $stat_obj->mtime;