Help for this page

Select Code to Download


  1. or download this
    if (-s $file)  {
        my $size = (stat _)[7];
    }
    
  2. or download this
    my $size = ( -s $file );
    
  3. or download this
    my ($mode,$uid,$size,$modtime) = (stat $file)[2,4,7,9];