Microsoft Azure Storage Explorer
Posted zkbfighting
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Microsoft Azure Storage Explorer相关的知识,希望对你有一定的参考价值。
之前写过一个往Microsoft Azure Storage Explorer里存储的功能,现在又要把东西给下载下来。
记录一下:
1 public string DownFileFromAzure() 2 3 StorageCredentials storageCredentials = new StorageCredentials(System.Configuration.ConfigurationManager.AppSettings["Blob_AccountName"].ToString(), System.Configuration.ConfigurationManager.AppSettings["Blob_AccountKey"].ToString()); 4 CloudStorageAccount storageAccount = new CloudStorageAccount(storageCredentials, "core.chinacloudapi.cn", true); 5 CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient(); 6 CloudBlobContainer blobContainer = blobClient.GetContainerReference("acsh");//容器 7 8 CloudBlockBlob blockBlobs = blobContainer.GetBlockBlobReference("2019/7/1/131JS0E5201907000005");//除了外层的容器外的全路径 9 string end= blockBlobs.DownloadText(); 10 byte[] ensbyte = new byte[100000000]; 11 blockBlobs.DownloadToByteArray(ensbyte, 0); 12 blockBlobs.DownloadToFile(@"E:\\DownFromAzure\\Open", FileMode.OpenOrCreate);//直接下载到本地的文件 13 //blockBlobs.Delete(); 14 15 return ""; 16
以上是关于Microsoft Azure Storage Explorer的主要内容,如果未能解决你的问题,请参考以下文章
Microsoft.Azure.Storage 和 WindowsAzure.Storage Nuget 包有啥区别?
无法加载文件或程序集“Microsoft.WindowsAzure.Storage”Azure 函数
Azure Functions - 无法加载文件或程序集“Microsoft.WindowsAzure.Storage”
Microsoft Azure Storage Explorer
如何使用 Microsoft.WindowsAzure.Storage.Table.CloudTableClient 授权托管标识访问 Azure 表存储