Skip to content

Instantly share code, notes, and snippets.

@peterujah
Forked from eusonlito/foldersize.php
Created December 5, 2016 17:48
Show Gist options
  • Select an option

  • Save peterujah/34b876e5a407947580278fff0cbc54fd to your computer and use it in GitHub Desktop.

Select an option

Save peterujah/34b876e5a407947580278fff0cbc54fd to your computer and use it in GitHub Desktop.
PHP function to get the folder size including subfolders
<?php
function folderSize ($dir)
{
$size = 0;
foreach (glob(rtrim($dir, '/').'/*', GLOB_NOSORT) as $each) {
$size += is_file($each) ? filesize($each) : folderSize($each);
}
return $size;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment