How to check file is uploaded or not in laravel

徘徊边缘 提交于 2019-12-13 01:28:30

问题


I am uploading an image file to the input file ImageUpload.I need to check if file has been uploaded then create a unique filename and save it on the server.

$file = $request->file('ImageUpload');
$filename=uniqid($user->id . '_'    ).".".$file->getClientOriginalExtension();
Storage::disk('public')->put($filename,File::get($file));

回答1:


You can check if your file variable exists as

if($request->hasFile('ImageUpload')){ }

But, as per official documentation, to check whether file upload is successful without any errors,

if($request('ImageUpload')->isValid()){ }

Laravel is extensive, it allows you to save file without writing extra call to Storage etc. as

$filePath = $request->ImageUpload->storeAs('DIRECTORY_IN_STORAGE', 'CUSTOM_FILE_NAME'); // it return the path at which the file is now saved



回答2:


try this one

if($request->hasFile('ImageUpload')) { //check file is getting or not..
        $file = $request->file('ImageUpload');
        $filename=uniqid($user->id . '_'    ).".".$file->getClientOriginalExtension(); //create unique file name...
        Storage::disk('public')->put($filename,File::get($file));
        if(Storage::disk('public')->exists($filename)) {  // check file exists in directory or not
           info("file is store successfully : ".$filename);            
        }else { 
           info("file is not found :- ".$filename);
        }
}



回答3:


Try this.

if($request->hasFile('ImageUpload'))
{
 $filenameWithExt    = $request->file('ImageUpload')->getClientOriginalName();
 $filename           = pathinfo($filenameWithExt, PATHINFO_FILENAME);
 $extension          = $request->file('ImageUpload')->getClientOriginalExtension();
 $fileNameToStore    = $filename.'_'.time().'.'.$extension;
 $path               = $request->file('ImageUpload')->storeAs('public', $fileNameToStore);                            
} 



回答4:


I faced the same problem today and found this solution on official Laravel Docs. I am using Laravel 5.5 by the way.

if ($request->file('imageupload')!=null)
{
  return 'file uploaded';
}
else
{
  return 'file not uploaded';
}


来源:https://stackoverflow.com/questions/53909833/how-to-check-file-is-uploaded-or-not-in-laravel

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!