1

我们使用 Amazon S3 为我们的项目保存图片,但现在我们需要在 S3 中将一些图像从一个地方复制到另一个地方。我的数据库中存储了旧/保存的图像路径,现在想使用新路径保存它们。

有人可以指导我在任何正确的方向开始。我一直在研究,CopyObjectRequest但不知道如何进行。

任何帮助将不胜感激。

谢谢

4

1 回答 1

1

这是一个通用示例,其中originaldestination变量从调用者传递给函数。

public void DuplicateFileInCloud(string original, string destination)
{
    try
    {
        CopyObjectRequest request = new CopyObjectRequest();

        if (original.StartsWith("http"))
        {
            // example: http://jk-v30.s3.amazonaws.com/PredefinedFiles/Favicons/002.ico
            string bucket = getBucketNameFromUrl(original), // i.e. jk-v30
                    key = getKeyFromUrl(original);          // the path to your file: PredefinedFiles/Favicons/002.ico

            request.WithSourceBucket(bucket);
            request.WithSourceKey(key);
        }
        else
        {
            // same bucket: copy/paste operation
            request.WithSourceBucket(this.bucketName);
            request.WithSourceKey(original);
        }

        request.WithDestinationBucket(this.bucketName);
        request.WithDestinationKey(destination);
        request.CannedACL = S3CannedACL.PublicRead; // one way of setting public headers - see other below

        using (AmazonS3 client = Amazon.AWSClientFactory.CreateAmazonS3Client(this.accessKey, this.secretAccessKey))
        {
            S3Response response = client.CopyObject(request);
            response.Dispose();
        }
    }
    catch (AmazonS3Exception s3Exception)
    {
        throw s3Exception;
    }
}

希望这就是你要找的!

环境public-read

response.Addheader("x-amz-acl","public-read");
于 2013-08-15T12:16:55.113 回答