RosettaCodeData/Task/File-size/Perl/file-size-3.pl

3 lines
132 B
Perl
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
my $size1 = (stat 'input.txt')[7]; # builtin stat() returns an array with file size at index 7
my $size2 = (stat '/input.txt')[7];