Help for this page

Select Code to Download


  1. or download this
    my $size = -s $file;
  2. or download this
    use File::stat;
    my $st = stat($file);
    my $size = $st->size;