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

3 lines
132 B
Perl
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
my $size1 = (stat 'input.txt')[7]; # builtin stat() returns an array with file size at index 7
my $size2 = (stat '/input.txt')[7];