s3- boto- 按上传时间列出存储桶内的文件

发布于 2024-12-13 09:11:42 字数 180 浏览 2 评论 0原文

我需要每小时从 s3 服务器下载 100 个最新文件。

bucketList = bucket.list(PREFIX)

上面的代码创建了文件列表,但它不依赖于文件的上传时间,因为它是按文件名列出的?

我对文件名无能为力。它是随机给出的。

谢谢。

I need to download every hour 100 newest files from s3 server.

bucketList = bucket.list(PREFIX)

The code above creates list of the files but it is not depend on the uploading time of the files, since it lists by file name?

I can do nothing with file name. It is given randomly.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

寄风 2024-12-20 09:11:42

名单有多大?您可以根据键的“last_modified”属性对列表进行排序,

orderedList = sorted(bucketList, key=lambda k: k.last_modified)
keysYouWant = orderedList[0:100]

如果您的列表很大,这可能效率不高。查看 boto.s3.bucket.Bucket 中 list() 函数的内联文档。

How big is the list? You could sort the list on the 'last_modified' attr of the Key

orderedList = sorted(bucketList, key=lambda k: k.last_modified)
keysYouWant = orderedList[0:100]

If your list is HUGE this may not be efficient. Check out the inline docs for the list() function in boto.s3.bucket.Bucket.

三人与歌 2024-12-20 09:11:42

我阅读 列出对象 操作文档,表明对象始终按字母顺序列出(按对象键)。

如果将每个对象的创建时间编码到对象键中,也许就能达到你想要的效果。

My reading of List Objects operation documentation, suggests that objects are always listed in alphabetical order (by object key).

If you encode the creation time of each object into the object key, you may be able to achieve what you want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文