wpseek.com
				A WordPress-centric search engine for devs and theme authors
			get_dirsize › WordPress Function
Since
Deprecatedn/a
› get_dirsize ( $directory, $max_execution_time = null )
| Parameters: (2) | 
 | 
| Returns: | 
 | 
| Defined at: | 
 | 
| Codex: | |
| Change Log: | 
 | 
Gets the size of a directory.
A helper function that is used primarily to check whether a blog has exceeded its allowed upload space.Source
function get_dirsize( $directory, $max_execution_time = null ) {
	/*
	 * Exclude individual site directories from the total when checking the main site of a network,
	 * as they are subdirectories and should not be counted.
	 */
	if ( is_multisite() && is_main_site() ) {
		$size = recurse_dirsize( $directory, $directory . '/sites', $max_execution_time );
	} else {
		$size = recurse_dirsize( $directory, null, $max_execution_time );
	}
	return $size;
}