How to Get Size of Directory in MB 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...

Hardik Savani
I'm a full-stack developer, entrepreneur and owner of Aatman Infotech. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Laravel Eloquent inRandomOrder() Method Example
- Laravel Eloquent whereRaw Condition Example
- Laravel Move File from One Folder to Another Example
- Laravel Copy File from One Folder to Another Example
- Laravel Eager Loading with Count Relationship Example
- How to Get File Size from URL in Laravel?
- How to Use Soft Delete in Laravel?
- How to Create Zip File in Laravel?
- How to Count Files in a Directory using Laravel?
- Laravel Create JSON File & Download From Text Example