ListIncompleteUploads() public method

Lists all incomplete uploads in a given bucket
public ListIncompleteUploads ( string bucketName ) : IEnumerable
bucketName string Bucket to list all incomplepte uploads from
return IEnumerable
コード例 #1
0
        static int Main(string[] args)
        {
            var client = new MinioClient("https://s3.amazonaws.com", "ACCESSKEY", "SECRETKEY");

            var items = client.ListIncompleteUploads("bucketName", "prefix", true);

            foreach (Upload item in items)
            {
                Console.Out.WriteLine(item.Key);
            }
            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"]);

            var items = client.ListIncompleteUploads("my-bucketname", "my-prefixname", true);

            foreach (Upload item in items)
            {
                Console.Out.WriteLine(item.Key);
            }
            return 0;
        }