Help for this page

Select Code to Download


  1. or download this
    my $file = 'some_file';
    my $size = $ftp->size($file);
    ...
    print "Done!\n";
    close($fh);
    $data->close;
    
  2. or download this
    my $file = 'some_file';
    my $size = -s $file;
    ...
    print "Done!\n";
    close($fh);
    $data->close;