从Google Cloud Storage存储桶读取文件

时间:2020-09-22 21:10:27

标签: spring-boot google-cloud-storage

我正在使用Spring Boot连接到Google云存储。

我能够连接到单个文件并从Google云存储桶中读取内容。

但是我无法获取Google云存储存储桶中所有文件的列表。

请帮助我。

这有效

Resource gcsFile = this.context.getResource("gs://" + bucketName + "/" + filePath);

这不起作用。

 Resource[] resources = this.context.getResources("gs://" + bucketName + "/*.*");

有什么原因吗?

1 个答案:

答案 0 :(得分:0)

我找到了一个文档here,其中包含示例代码,可以为您提供帮助。看看并告诉我是否有帮助。

此页面显示如何列出存储在Cloud Storage存储桶中的对象,这些对象按名称按字典顺序在列表中排序。