如何检查文件是否存在于 Google Cloud Storage 中? [英] How to check if file exists in Google Cloud Storage?

查看:21
本文介绍了如何检查文件是否存在于 Google Cloud Storage 中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个脚本,我想检查存储桶中是否存在文件,如果不存在则创建一个.

我尝试使用 os.path.exists(file_path) where file_path = "/gs/testbucket",但是我得到了一个找不到文件的错误.p>

我知道我可以使用 files.listdir() API 函数列出位于路径中的所有文件,然后检查我想要的文件是否是其中之一.但我想知道是否有另一种方法来检查文件是否存在.

解决方案

我猜没有函数可以直接检查给定路径的文件是否存在.
我创建了一个函数,该函数使用 files.listdir() API 函数列出存储桶中的所有文件并将其与我们想要的文件名匹配.如果找到则返回 true,否则返回 false.

I have a script where I want to check if a file exists in a bucket and if it doesn't then create one.

I tried using os.path.exists(file_path) where file_path = "/gs/testbucket", but I got a file not found error.

I know that I can use the files.listdir() API function to list all the files located at a path and then check if the file I want is one of them. But I was wondering whether there is another way to check whether the file exists.

解决方案

I guess there is no function to check directly if the file exists given its path.
I have created a function that uses the files.listdir() API function to list all the files in the bucket and match it against the file name that we want. It returns true if found and false if not.

这篇关于如何检查文件是否存在于 Google Cloud Storage 中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆