public function File::getSize in Drupal 10
Same name and namespace in other branches
- 8 core/modules/file/src/Entity/File.php \Drupal\file\Entity\File::getSize()
- 9 core/modules/file/src/Entity/File.php \Drupal\file\Entity\File::getSize()
Returns the size of the file.
Return value
string The size of the file in bytes.
Overrides FileInterface::getSize
File
- core/modules/ file/ src/ Entity/ File.php, line 104 
Class
- File
- Defines the file entity class.
Namespace
Drupal\file\EntityCode
public function getSize() {
  return $this
    ->get('filesize')->value;
}