Я пытаюсь прочитать загруженный файл в свою систему, но не могу прочитать его, потому что каждый раз, когда я делаю это, я получаю эту ошибку FileNotFoundException in Filesystem.php line 41: File does not exist at path /var/www/html/..
Я не знаю, что я делаю не так в этом. я использую File::get()
метод. Ниже приведен код. Спасибо за помощь
public function getUploadedFile() {
$destinationPath = 'uploads';
$path= public_path()."/". $destinationPath;
echo $path; // this was to check whether am I getting the right path or not which I am getting.
$upload = new Upload;
$content = utf8_encode(File::get($path ."/". $upload->file_name));
return $content;
}
модель
public function setFileAttribute($file){
$this->attributes['file'] = Carbon::now()->second.$file->getClientOriginalName();
$name = Carbon::now()->second.$file->getClientOriginalName();
\Storage::disk('local')->put($name, \File::get($file));
}
fileSystems.php
'disks' => [
'local' => [
'driver' => 'local',
// 'root' => storage_path('public'),
'root' => public_path('storage'),
],
'public' => [
'driver' => 'local',
'root' => storage_path('storage'),
'visibility' => 'public',
],
's3' => [
'driver' => 's3',
'key' => 'your-key',
'secret' => 'your-secret',
'region' => 'your-region',
'bucket' => 'your-bucket',
],
],
Других решений пока нет …