Google云端存储:如何使用gsutil获取存储桶/文件夹中的新文件列表

Google云端存储:如何使用gsutil获取存储桶/文件夹中的新文件列表

问题描述:

我有一个存储桶/文件夹,每分钟都有很多文件进入该存储桶/文件夹. 如何根据文件时间戳读取新文件.

I have a bucket/folder into which a lot for files are coming in every minutes. How can I read only the new files based on file timestamp.

例如:列出所有带有时间戳> my_timestamp

eg: list all files with timestamp > my_timestamp

这不是gsutil或GCS API提供的功能,因为无法通过时间戳列出对象.

This is not a feature that gsutil or the GCS API provides, as there is no way to list objects by timestamp.

相反,您可以使用 GCS Cloud Pub/Sub a>功能.

Instead, you could subscribe to new objects using the GCS Cloud Pub/Sub feature.