复制对象

您可以使用 copyObject 接口复制对象,您需要设置复制的对象名,所在的桶以及目标桶和对象名:

var params = {
    Bucket: "destinationbucket", 
    CopySource: "/sourcebucket/key", 
    Key: "key"
};
s3.copyObject(params, function(err, data) {
    if (err)
        console.log(err, err.stack);
    else
        console.log(data);
});