ItSolutionStuff.com

How to Get File Size from Storage in Laravel?

By Hardik Savani • April 16, 2024
Laravel

We sometimes require to get file size from path in laravel, so if you need to get file size from url then no worry and you can get using File facade. File facade provide several function that way we can get size of file or image.

you will able to get file size from path in laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 version1

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:

Example 1: using Storage

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use Storage;

class DemoController extends Controller

{

/**

* Create a new controller instance.

*

* @return void

*/

public function index()

{

$fileSize = Storage::size('public/settings/file.jpg');;

dd($fileSize);

}

}

Example 2: Using File

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use File;

class DemoController extends Controller

{

/**

* Create a new controller instance.

*

* @return void

*/

public function index()

{

$fileSize = File::size(public_path('images/1461177230.jpg'));

dd($fileSize);

}

}

I hope it can help you...

Tags: Laravel
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

Laravel Store JSON Format Data in Database Example

Read Now →

How to Create and Use Stored Procedure in Laravel?

Read Now →

Laravel Eloquent Left Join Where Null Condition Example

Read Now →

PHP Copy File from One Folder to Another Example

Read Now →

PHP Laravel Left Join Query Example

Read Now →

PHP Laravel Inner Join Query Example

Read Now →

How to Delete File from Public Folder / Storage Folder in Laravel?

Read Now →

Laravel Move File from One Folder to Another Example

Read Now →

Laravel Copy File from One Folder to Another Example

Read Now →

How to Display Image from Storage Folder in Laravel?

Read Now →

Laravel Storage Dropbox Integration Example

Read Now →

How to Create Zip File in Laravel?

Read Now →

Laravel Eloquent Inner Join with Multiple Conditions Example

Read Now →

How to Count Files in a Directory using Laravel?

Read Now →

Laravel Create JSON File & Download From Text Example

Read Now →