Documentation
getSize
usage
integer size = file->getSize()
retourne
the size of the file in bytes.
exemples
include('../Kernel/common/file.class.php');
$folder = new Folder('/media/images/');
while($file = $folder->getNextFile()){
echo $file->getName().' - '.$file->getSize().' bytes'; // echoes 'picture.jpg - 88422 bytes'
}