最近更新时间:2021-10-29
以下代码用于删除文件。
using System; using Amazon.S3; using Amazon.S3.Model;
namespace DeleteObject { 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 { DeleteObjectResponse response; DeleteObjectRequest deleteObject = new DeleteObjectRequest{ BucketName = "xxx", Key = "xxx" // object name };
response = serviceClient.DeleteObjectAsync(deleteObject).GetAwaiter().GetResult();
} catch (AmazonS3Exception e) { Console.WriteLine(e.Data); throw; } catch (Exception e) { Console.WriteLine(e); throw; } } } } |