How to delete file from public folder in laravel 5.1

后端 未结 17 1637
悲哀的现实
悲哀的现实 2020-11-30 09:02

I want to delete a News from database and when I hit the delete button all data from database deleted but the image is remains in upload folder. So, how do I this to work. t

17条回答
  •  無奈伤痛
    2020-11-30 09:16

    If you store your image in folder public, try this steps:

    For example your image is sample.jpg and your path is public/img/sample.jpg so this codes will delete your image

    use Illuminate\Support\Facades\File;
    .
    .
    .
    
    
    public function deleteImage(){
    
       $imgWillDelete = public_path() . '/img/sample.jpg';
       File::delete($imgWillDelete);
    }
    

提交回复
热议问题