- or download this
my $fileSize = -s $fileName;
- or download this
my $fileSize = (stat $fileName)[7];
- or download this
my $limit = 160;
my $bytesToRead
= $fileSize > $limit
? $limit
: $fileSize;
- or download this
my $bytesRead = read($inpFH, my $inpBuffer, $bytesToRead);
...
unless $bytesRead == $bytesToRead;
print $inpBuffer;