我正在尝试使用它:Response :: download()来下载文件,我正在使用Laravel 4,这里是我的代码:
public function download_file($file)
{
$file = 'myfile.pdf';
//-- public/docs/myfile.pdf
$path = public_path(). '/docs/' . $file;
$headers = array(
'Content-Type' => 'application/pdf',
);
return Response::download($path, $file, $headers);
}
我得到的错误: 文件“C:\ Users \ myuser \ Workbench \ Web \ sites \ mysite \ public / docs / myfile.pdf”不存在
我出了什么问题?
谢谢!