Help for this page

Select Code to Download


  1. or download this
    my $filename = "$directory$file";
    my @array=stat($filename);
    
  2. or download this
      DB<2> x @array
    0  File::stat=ARRAY(0x3055e8e4)
    ...
       10  1375371182
       11  4096
       12  192
    
  3. or download this
    my $time = $array[9];
    
  4. or download this
     my $time = $array[0][9]
    
  5. or download this
    my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size, $atime,$mtime,$ctime
    +,$blksize,$blocks) = stat($filename);