Help for this page

Select Code to Download


  1. or download this
    sub file_mode {
        my $filename = shift;
        return -1 unless(-f $filename);
        return(stat($filename))[2];
    }
    
  2. or download this
      return (-f $filename) ? (stat($filename))[2] : -1