Help for this page

Select Code to Download


  1. or download this
    print "$filename at (stat($filename))[9]\n\n";
    
  2. or download this
    print "$filename at (", ( stat($filename) )[9], "\n\n";
    
  3. or download this
    print "$filename at (@{[ ( stat($filename) )[9] ]})\n\n";
    
  4. or download this
    ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,$bl
    +ksize,$blocks) = stat($filename) or die "Can't stat file $filename\n"
    +;
    
  5. or download this
    my $stat = stat($filename) or die "Can't stat file $filename";
    
  6. or download this
    print "$filename at (", $stat->mtime, ")\n";