Tagged Questions
5
votes
7answers
2k views
How do I get the size of a file in megabytes using Perl?
I want to get the size of a file on disk in megabytes. Using the -s operator gives me the size in bytes, but I'm going to assume that then diving this by a magic number is a bad idea:
my $size_in_mb ...