function upload_space_used

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.

Archivo

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

Código

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