当我尝试检查 Laravel 5.1 中是否存在文件时,我总是收到此错误:
ErrorException in Local.php line 95:
mkdir(): File exists
我不知道这里可能出了什么问题,我想检查一个文件是否存在:
$exists = Storage::disk('images')->has('filename.jpg');
dd($exists);
磁盘“图像”:
'disks' => [
'local' => [
'driver' => 'local',
'root' => storage_path().'/app',
],
'images' => [
'driver' => 'local',
'root' => storage_path().'/app/images',
],
有任何想法吗?