所以正如标题所说,我正在努力将一个文件夹复制到另一个文件夹
我试过这个但没有结果
编辑:我通过修复 $npath 变量来实现这一点,我只是给出了没有文件夹名称的 url$npath = $newk->url;
所以最终的代码将是:
public function copyFolder(Request $request)
{
$id= $request->get('oldf');
$new = $request->get('newf');
$document = Document::find($id);
$newk = Document::find($new);
$npath = $newk->url.'/'.$document->nom;
$file= new Filesystem();
if($file->copyDirectory($document->url, $npath)){
return redirect('home');
}
return redirect('home');
}
任何帮助,将不胜感激 :)