in reply to Re: how to get filesize
in thread how to get filesize

hmmm... if you're using File::stat (not File::Stat! Odd, but it seems like someone uploaded a File::Stat to CPAN :p ), then you can use it like this:
use File::stat; printf qq(File size with "File::stat" is %s\n), stat($filename)->size;
And unlike File::Stat, File::stat is a CORE module...