1. 前言html
本文是根據Azure文檔與本人作了驗證以後寫的。git
若是想下載微軟官網的demo, 請前往github https://github.com/Azure-Samples/storage-blob-dotnet-getting-startedgithub
2. 介紹api
Azure Blob是存儲很大空間的服務,能容許存儲與訪問經過http或https。Blob是有公有與私有的屬性。公有是全部人能夠看到的連接,私有是要經過祕鑰等才能夠訪問到資源。app
blob能夠存儲:優化
1)images或document指向一個文件夾ui
2)保存文件spa
3)視頻與音頻code
4)存儲數據的備份和恢復、災難恢復和歸檔orm
5)由一個本地存儲數據進行分析或azure託管服務
3. 概念
1)Container容器:
一個容器能夠包含不少個blobs,一個帳號能夠包含不少個containers容器。請注意容器名字要爲小寫。
2)Blob:
blob是一個文件的屬性與大小。Azure存儲的blobs包含三種類型:block blobs、page blobs、append blobs。
Block blobs:存儲的是text與二進制文件,例如documents與媒體類型文件。
Append blobs:是相似於Block blobs,可是它是作了優化的操做,因此它是用於logging的操做。一個簡單的block blob或者 append blob 能夠包含5000個blocks,最大每一個文件4MB,整個大小最大爲194GB(4MB*50000)
Page blobs:最大爲1TB,是能夠讀寫的操做。
4. 代碼開始
1)建立存儲帳戶
關於建立存儲的步驟,請參照
http://www.cnblogs.com/alunchen/p/5765700.html
中的第3大點
2)導入包,在包管理器上面分別輸入下面的命令:
Install-Package WindowsAzure.Storage
Install-Package Microsoft.WindowsAzure.ConfigurationManager
2)創建鏈接
string connStr = "DefaultEndpointsProtocol=https;AccountName=ceslighttest;AccountKey=cp3JXYFXu6XhV18oVQW2q7urHOhxhm9Guwl6uElTBWd9nxxxxxxxxxxxxxx;EndpointSuffix=core.chinacloudapi.cn"; //創建鏈接 CloudStorageAccount storageAccount = CloudStorageAccount.Parse(connStr); CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();
3)建立容器
// 建立容器,是否存在 CloudBlobContainer container = blobClient.GetContainerReference("testuimageblobcontainercompanyname"); container.CreateIfNotExists();
4)設置權限
容器默認是private的,意思是要指定key才能下載圖片。若是要把圖片設置成對外哪裏均可如下載,請設置成public
//容器默認是private的,意思是要指定key才能下載圖片。若是要把圖片設置成對外哪裏均可如下載,請設置成public container.SetPermissions(new BlobContainerPermissions { PublicAccess = BlobContainerPublicAccessType.Blob });
5)建立文件,並上傳本地文件
// 建立文件名,若是有相同的文件名,則替換 CloudBlockBlob blockBlob = container.GetBlockBlobReference("23.jpg"); //上傳本地文件 using (var fileStream = System.IO.File.OpenRead(@"E:\23.jpg")) { blockBlob.UploadFromStream(fileStream); }
6)show所有在容器裏面的blobs文件
// 輸出文件大小與路徑uri foreach (IListBlobItem item in container.ListBlobs(null, false)) { if (item.GetType() == typeof(CloudBlockBlob)) { CloudBlockBlob blob = (CloudBlockBlob)item; r += string.Format("Block blob of length {0}: {1}", blob.Properties.Length, blob.Uri); } else if (item.GetType() == typeof(CloudPageBlob)) { CloudPageBlob pageBlob = (CloudPageBlob)item; r += string.Format("Page blob of length {0}: {1}", pageBlob.Properties.Length, pageBlob.Uri); } else if (item.GetType() == typeof(CloudBlobDirectory)) { CloudBlobDirectory directory = (CloudBlobDirectory)item; r += string.Format("Directory: {0}", directory.Uri); } }
7)刪除blobs
CloudBlockBlob blockBlob = container.GetBlockBlobReference("23.jpg"); //刪除blob blockBlob.Delete();