Laravel Get File Size from Path Example

10-Apr-2023

.

Admin

Hii Guys,

In this tutorial,I will learn you how to get file size from path in laravel 6.you can simply and easy to get file size in laravel 6.

In bellow example i just give you path of my images folder inside public folder and one image, that give path as argument of size function:

Solution :-


/**

* Show the application dashboard.

*

* @return \Illuminate\Contracts\Support\Renderable

*/

public function index(Request $request)

{

$fileSize = \File::size(public_path('image/house2.jpeg'));

dd($fileSize);

}

Output :-

26849 //size for 26,849 bytes

It will help you......

#Laravel 7

#Laravel

#Laravel 6