How To Delete File From Public Folder In Laravel

Websolutionstuff | Sep-14-2020 | Categories : Laravel PHP

In this article, we will see how to remove/delete files from public folders. We will give you a demo of how to remove files from the storage folder in laravel 6 and laravel 7 and laravel 8. Also, you can remove or delete files or images from the public folder and storage folder in laravel 6/7/8/9. So, here we will explain how to delete images from the storage folder using Laravel File System and PHP function file_exists() and unlink().

Many times we are required to delete images or files from our database but those files are still saved in our laravel storage function, if you are not taking any action then they will be occupied more space. So, we need to remove it manually or we can remove it via the laravel function or core PHP function.

How To Delete File From Public Folder In Laravel 6/7/8/9

Using Storage System

You can remove files from the storage path like the below example. 

public function removeImage()
{  
  if(\Storage::exists('upload/img.png')){
    \Storage::delete('upload/img.png');
  }else{
    dd('File not found.');
  }
}

 

Using File System

In this example, we will delete the image from the public path. 

public function removeImage()
{  
  if(\File::exists(public_path('upload/img.png'))){
    \File::delete(public_path('upload/img.png'));
  }else{
    dd('File not found');
  }
}

 

Using PHP

 In this example, we will unlink the image or file using the PHP function.

public function removeImage()
{  
    if(file_exists(public_path('upload/img.png'))){
      unlink(public_path('upload/img.png'));
    }else{
      dd('File not found');
    }
}

 


You might also like:

Recommended Post
Featured Post
7 Easy Steps: Create Laravel 10 Livewire CRUD Operation
7 Easy Steps: Create Laravel 1...

Hey there! I'm diving into the world of Laravel 10 and Livewire, and I'm excited to share a step-by-step guide o...

Read More

Dec-06-2023

How To Connect ftp Server Using php
How To Connect ftp Server Usin...

Hello All, In this post i will show you how to connect ftp server using php. PHP provide inbuilt functio...

Read More

May-12-2021

Laravel 8 Image Upload Validation
Laravel 8 Image Upload Validat...

In tutorial we will see how to validate laravel 8 image upload validation. In laravel 7/8 you can validate image using t...

Read More

Dec-15-2021

What Is New In Laravel 9 - Features Of Laravel 9
What Is New In Laravel 9 - Fea...

In this article, we will see what is new in laravel 9 and the features of laravel 9. Laravel 9 is recently released...

Read More

Feb-13-2022