如何检查文件是否存在于 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.

相关文章