public functionpreSave(EntityStorageInterface $storage) {
parent::preSave($storage);
// The file itself might not exist or be available right now.$uri = $this->getFileUri();
$size = @filesize($uri);
// Set size unless there was an error.if ($size !== FALSE) {
$this->setSize($size);
}
}