存储::检查创建文件。拉拉韦尔

时间:2019-09-18 10:20:26

标签: php laravel file

我的代码在这里:

Storage::disk(‘local’)->put($name,$information);

我想检查我的文件是否已创建并回显一条消息。 如果将创建它,我想回显“您已创建”。 如果不是,我想回显“您的文件未创建”。 怎么办呢?

1 个答案:

答案 0 :(得分:1)

您可以使用Storage::exists

$exists = Storage::disk('s3')->exists('file.jpg'); // true/false

file_exists

$filename = '/path/to/foo.txt';

if (file_exists($filename)) {
    echo "The file $filename exists";
} else {
    echo "The file $filename does not exist";
}