17

我的 S3 存储桶中的密钥中包含一个文件。我想创建一个包含相同文件的新密钥。是否可以不下载该文件?我正在寻找 Python 中的解决方案(最好是 boto 库)。

4

6 回答 6

15

其中 bucket 是目标存储桶:

bucket.copy_key(new_key,source_bucket,source_key)
于 2010-03-10T15:13:01.017 回答
10
from boto.s3.key import Key

#Get source key from bucket by name
source_key = source_bucket.get_key(source_key_name)

#Copy source key to a new bucket with a new key name (can be the same as source)
#Note: source_key is Key
source_key.copy(dest_bucket_name,dest_key_name)

#The signature of boto's Key class:
def copy(self, dst_bucket, dst_key, metadata=None,
             reduced_redundancy=False, preserve_acl=False,
             encrypt_key=False, validate_dst_bucket=True)

#set preserve_acl=True to copy the acl from the source key
于 2014-02-02T22:18:26.877 回答
4

浏览boto的源码发现Key对象有一个“copy”的方法。感谢您对 CopyObject 操作的建议。

于 2009-09-23T13:53:09.663 回答
2

虽然没有人问,但我认为展示如何做到这一点可能是相关的simples3

>>> b.copy("my_bucket/file.txt", "file_copy.txt", acl="public")

我不确定 Boto 在这里做了什么,但值得注意的是权限(ACL)不会被 S3 复制,如果没有指定其他内容,它将被重置为“私有”。要复制 ACL,您必须先请求它。

于 2011-02-11T13:33:46.857 回答
2

S3 允许逐个对象复制。当您指定源对象的键和存储桶以及目标目标的键和存储桶时,CopyObject 操作会创建对象的副本。不确定 boto 是否有一个紧凑的实现。

于 2009-09-23T13:24:33.800 回答
0

请注意,Key 对象上的“复制”方法有一个“preserve_acl”参数(默认为 False),它将源的 ACL 复制到目标对象。

于 2011-09-09T19:24:44.570 回答