s3- boto- 按上传时间列出存储桶内的文件
我需要每小时从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
名单有多大?您可以根据键的“last_modified”属性对列表进行排序,
如果您的列表很大,这可能效率不高。查看 boto.s3.bucket.Bucket 中 list() 函数的内联文档。
How big is the list? You could sort the list on the 'last_modified' attr of the Key
If your list is HUGE this may not be efficient. Check out the inline docs for the list() function in boto.s3.bucket.Bucket.
我阅读 列出对象 操作文档,表明对象始终按字母顺序列出(按对象键)。
如果将每个对象的创建时间编码到对象键中,也许就能达到你想要的效果。
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.