gpt4 book ai didi

php - Laravel 5.1 如何检查目录中是否存在文件?

转载 作者:行者123 更新时间:2023-12-05 09:21:29 25 4
gpt4 key购买 nike

我有一个表单,用户可以在其中将文件上传到上传文件夹。在 Controller 中,我需要检查文件是否已存在于上传目录中,如果存在则不允许将同一文件上传两次。我该如何检查?

最佳答案

也许问题在于您正在检查文件是否存在于服务器的根文件夹中。

试试这个

    if (file_exists(public_path('uploads/'.$file->getClientOriginalName()))) {
return redirect()->back()->withInput()->withErrors([' File already exists.']);
}

关于php - Laravel 5.1 如何检查目录中是否存在文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31973490/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com