RemoveBucket() 공개 메소드

Remove a bucket
public RemoveBucket ( string bucketName ) : void
bucketName string Name of bucket to remove
리턴 void
예제 #1
0
        static int Main(string[] args)
        {
            var client = new MinioClient("https://s3.amazonaws.com", "ACCESSKEY", "SECRETKEY");

            client.RemoveBucket("bucket");

            return 0;
        }
예제 #2
0
        static int Main()
        {
            /// Note: s3 AccessKey and SecretKey needs to be added in App.config file
            /// See instructions in README.md on running examples for more information.
            var client = new MinioClient("s3.amazonaws.com", ConfigurationManager.AppSettings["s3AccessKey"],
                                         ConfigurationManager.AppSettings["s3SecretKey"]);
            /// This operation will only work if your bucket is empty.
            client.RemoveBucket("my-bucketname");

            return 0;
        }