public FileStorage::spaceUsed($uid = NULL, $status = FILE_STATUS_PERMANENT)
Determines total disk space used by a single user or the whole filesystem.
Parameters
int $uid: Optional. A user id, specifying NULL returns the total space used by all non-temporary files.
int $status: (Optional) The file status to consider. The default is to only consider files in status FILE_STATUS_PERMANENT.
Return value
int An integer containing the number of bytes used.
Overrides FileStorageInterface::spaceUsed
File
- core/modules/file/src/FileStorage.php, line 15
Class
- FileStorage
- File storage for files.
Namespace
Drupal\file
Code
1 2 3 4 5 6 7 8 9 | public function spaceUsed( $uid = NULL, $status = FILE_STATUS_PERMANENT) { $query = $this ->database->select( $this ->entityType->getBaseTable(), 'f' ) ->condition( 'f.status' , $status ); $query ->addExpression( 'SUM(f.filesize)' , 'filesize' ); if (isset( $uid )) { $query ->condition( 'f.uid' , $uid ); } return $query ->execute()->fetchField(); } |
Please login to continue.