有没有办法更改 S3 文件的密钥?例如,我希望能够执行以下操作:
>>> from boto.s3.key import Key
>>> k=Key(bucket)
>>> k.key='cli-images/image-thumb.jpg' # this is the original key
>>> k.key='cli-images/moved/image-thumb.jpg' # this is the key I want to change it to
>>> k.save()
在查看 boto 文档时,我只能找到一种将密钥复制到另一个存储桶的方法,但在这种情况下,我需要将文件留在同一个存储桶中,只需移动位置(即更改密钥)。谢谢你。