in reply to FTP logs
My only idea of how to get an accurate file size locally would be to stat the file once it's been transferred. Something like:
should give you what you want to know, if in a round-about sort of way. If you have more than one file, just use your favorite loop. As with all things Perl, TIMTOWTDI, and I am sure there are some guru's around with more clever ways.my $file_size = (stat($filename))[7];
|
|---|