function FileStorageInterface::spaceUsed
Same name in other branches
- 9 core/modules/file/src/FileStorageInterface.php \Drupal\file\FileStorageInterface::spaceUsed()
- 10 core/modules/file/src/FileStorageInterface.php \Drupal\file\FileStorageInterface::spaceUsed()
- 11.x core/modules/file/src/FileStorageInterface.php \Drupal\file\FileStorageInterface::spaceUsed()
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.
1 method overrides FileStorageInterface::spaceUsed()
- FileStorage::spaceUsed in core/
modules/ file/ src/ FileStorage.php - Determines total disk space used by a single user or the whole filesystem.
File
-
core/
modules/ file/ src/ FileStorageInterface.php, line 25
Class
- FileStorageInterface
- Defines an interface for file entity storage classes.
Namespace
Drupal\fileCode
public function spaceUsed($uid = NULL, $status = FILE_STATUS_PERMANENT);
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.