📜  将文件从 s3 复制到 s3 存储桶 - 任何代码示例

📅  最后修改于: 2022-03-11 14:56:28.349000             🧑  作者: Mango

代码示例1
import boto3
s3 = boto3.resource('s3')
copy_source = {
    'Bucket': 'mybucket',
    'Key': 'mykey'
}
s3.meta.client.copy(copy_source, 'otherbucket', 'otherkey')