当前位置: 首页 > 知识库问答 >
问题:

Laravel 5动态将图像移动到另一个文件夹

徐阳炎
2023-03-14

我的应用程序中有一个文件上传模块。我可以在这里上传img/upload/{container\u id}/file\u name\中的文件。

{container_id}将取决于用户将使用的文件夹。

我遇到的问题是当他们试图将一条记录编辑到另一个文件夹时。他们上载的文件仍保留在旧文件夹中。

我还想将文件移动到用户定义的新文件夹中。

我这里有我的代码,我被困在移动文件中了。

$attachments = Attachment::where('document_id',$id)->select('filename')->get();
        $document = Document::findOrFail($id);

        foreach($attachments as $attachment)
        {
            $attachment->filename = base_path().'/public/img/upload/'.$document->container_id."/".$attachment->filename;
        }

        Document::findOrFail($id)->update($request->all());

        $document = Document::findOrFail($id);

        $x = Attachment::where('document_id','=',$id)->count();

        foreach($attachments as $file)
        {

            HOW_DO_I_MOVE_THE_FILE????
            $x++;
        }

        return redirect('documents');

共有1个答案

平光明
2023-03-14

更新:

在您的情况下,应该使用rename()

rename ('current/path/to/foo', 'new/path/to/foo');

使用rename()不仅可以重命名,还可以移动!简单地说,如果第二个参数的路径不同。因此,可以在循环中使用附件路径作为第一个参数,使用目标路径作为第二个参数。

文档:http://php.net/rename

下面是上传后移动的Laravel方法。

从留档:

$request->file('photo')->move($destinationPath);

$request->file('photo')->move($destinationPath, $fileName);

Photo是文件上传输入元素的名称。

注意,如果您有多个上载,您可以使用数组表示法,例如:

foreach ($request->file('photo') as $photo)
{
    $photo->move($destinationPath, $chooseYourFileName);
}
 类似资料: