我的代码在这里:
Storage::disk(‘local’)->put($name,$information);
我想检查我的文件是否已创建并回显一条消息。 如果将创建它,我想回显“您已创建”。 如果不是,我想回显“您的文件未创建”。 怎么办呢?
答案 0 :(得分:1)
您可以使用Storage::exists
:
$exists = Storage::disk('s3')->exists('file.jpg'); // true/false
$filename = '/path/to/foo.txt';
if (file_exists($filename)) {
echo "The file $filename exists";
} else {
echo "The file $filename does not exist";
}