function upload_space_used

6.x upload.module upload_space_used($uid)

Determine how much disk space is occupied by a user's uploaded files.

Parameters

$uid: The integer user id of a user.

Return value

The amount of disk space used by the user in bytes.

File

drupal-6.x/modules/upload/upload.module, line 375
File-handling and attaching files to nodes.

Code

function upload_space_used($uid) {
  return file_space_used($uid);
}