【发布时间】:2022-04-08 07:58:55
【问题描述】:
我想删除存储在 storage/app/myfolder/file.jpg 中的文件。我尝试了以下代码,但都不起作用:
use File
$file_path = url().'/storage/app/jobseekers_cvs/'.$filename;
unlink($file_path);
和
use File
$file_path = public_path().'/storage/app/myfolder/'.$filename;
unlink($file_path);
和
use File
$file_path = app_path().'/storage/app/myfolder/'.$filename;
unlink($file_path);
还有,
File::Delete('/storage/app/myfolder/'.$filename);
请帮忙。
【问题讨论】:
标签: php laravel laravel-5.3