文档中心 > 复制文件
复制文件

最近更新时间:2021-10-29

以下代码用于复制文件。

using System;

using Amazon.S3;

using Amazon.S3.Model;

 

namespace CopyObject

{

    class Program

    {

        static void Main()

        {  

            var Ak = "xxx";

            var Sk = "xxx";

            var endpoint = "http://s3.test.com";

            AmazonS3Client serviceClient = new AmazonS3Client(Ak,Sk,

            new AmazonS3Config{ ServiceURL = endpoint });

 

            try

            {  

                CopyObjectResponse response;

                CopyObjectRequest copyObject = new CopyObjectRequest{

                    SourceBucket = "xxx",

                    SourceKey = "xxx",

 

                    DestinationBucket = "xxx", // target bucketname

                    DestinationKey = "xxx"  // target object

                };

 

                response = serviceClient.CopyObjectAsync(copyObject).GetAwaiter().GetResult();

                Console.WriteLine(response.HttpStatusCode);

            

            } catch (AmazonS3Exception e) {

                Console.WriteLine(e.Data);

                throw;

            } catch (Exception e) {

                Console.WriteLine(e);

                throw;

            }

        }

    }

}