Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
$atime,$mtime,$ctime,$blksize,$blocks)
= stat($filename);
#$size is what you'll be looking for
$size ? "print size is $size" : print "empty";
if ( $size = -s $filename ) {
print "file '$filename' has size $size\n";
} else {
print "file '$filename' has zero size\n";
}