How to Get Size of Directory in MB Laravel?

By Hardik Savani February 18, 2023 Category : Laravel

Mostly we require to calculate for uploaded directory size because we can see how much we size allocate in uploaded directory. If you have limited server then you always need to check how much size of data in my folder.

you can also use in laravel 6, laravel 7, laravel 8, laravel 9 and laravel 10 application.

You can also get size of directory that way you can also display on your admin panel. Laravel provide File facade. File facade through we can get folder size in kb or mb or gb etc.

In bellow example i have

images directory in public folder. so we can get size for images folder like this way :

Example:

$file_size = 0;


foreach( File::allFiles(public_path('images')) as $file)

{

$file_size += $file->getSize();

}


$file_size = number_format($file_size / 1048576,2);

print_r($file_size.' MB');

I hope it cab help you...