我正在尝试使用 Laravel 5.5 从本地文件位置导入 csv 文件。由于某种原因,它无法在我的计算机上找到该文件,但路径是正确的。
$fileLocation = $request->file('file')->store('csv');
$importFile = File::file(storage_path('app/' . $fileLocation));
我正在尝试使用 Laravel 5.5 从本地文件位置导入 csv 文件。由于某种原因,它无法在我的计算机上找到该文件,但路径是正确的。
$fileLocation = $request->file('file')->store('csv');
$importFile = File::file(storage_path('app/' . $fileLocation));
您可以Storage
为此使用外观。这是一个例子:
if (Storage::disk($disk)->exists($filename)) {
return Storage::disk($disk)->get($filename);
}
throw new FileNotFoundException(sprintf('File not found: %s', $filename), 404);
如果你不想使用Storage
外观,你可以使用下面的代码来获取文件
$importFile = Illuminate\Support\Facades\File::get(storage_path('app/' . $fileLocation));
但是当您使用 csv 作为存储参数存储文件时,它将保存在storage/csv
文件夹中,您只需要调用storage_path($fileLocation)
.
确保您的存储路径正确,更多信息请阅读此处