Check For File Existence at Storage in Laravel

27-Nov-2022

.

Admin

Check For File Existence at Storage in Laravel

Hello Friends,

In this tutorial, I will show you the check for file existence at storage in laravel. This tutorial will give you a simple example of laravel check if a file exists in storage with example. step-by-step explanation and check the existence of a file in storage in laravel. This post will give you a simple example of how to check if a file exists in storage in laravel. You need to do a laravel check if a file exists in storage.

You can use this example with the versions of laravel 6, laravel 7, laravel 8, and laravel 9.

You have just to follow the below step and you will get the layout as below:

Step 1: Install Laravel


This is optional; however, if you have not created the laravel app, then you may go ahead and execute the below command:

composer create-project laravel/laravel example-app

Step 2: Create Format Route

web.php

<?php

use Illuminate\Support\Facades\Route;

use App\Http\Controllers\StorageFileExistsController;

/*

|--------------------------------------------------------------------------

| Web Routes

|--------------------------------------------------------------------------

|

| Here is where you can register web routes for your application. These

| routes are loaded by the RouteServiceProvider within a group which

| contains the "web" middleware group. Now create something great!

|

*/

Route::get('/index',[StorageFileExistsController::class, 'index']);

Step 3: create StorageFileExistsController

we will create StorageFileExistsController. so you can see the below code with output:

php artisan make:controller StorageFileExistsController

App\Http\Controllers\StorageFileExistsController

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use Illuminate\Support\Facades\Storage;

class StorageFileExistsController extends Controller

{

/**

* The attributes that are mass assignable.

*

* @var array

*/

public function index()

{

if(Storage::exists('/images/demo')) {

dd('exists');

}else{

dd('not exists');

}

}

}

Step 4: Start Development Server

Start the development server. Use the PHP artisan serve command and start your server:

php artisan serve

Now you are ready to run our example so run the below command to quick run.

http://localhost:8000/index

Output:

"exists" // app/Http/Controllers/StorageFileExistsController.php:18

I hope it can help you...

#Laravel