当它的uri在c#中失败时从blob下载

时间:2013-04-13 21:11:34

标签: c# azure azure-storage azure-storage-blobs

我正在尝试从Azure blob下载文件并将其保存在本地,但似乎失败了。 这是相关的代码:

    var blobClientCode = client.CreateCloudBlobClient();
    string codeUri = "https://???.blob.core.windows.net/...../mycode.exe";
    using (var codeContent = File.OpenWrite("C:\\code.exe")) {
        blobClientCode.GetBlockBlobReference(codeUri).DownloadToStream(codeContent);
    }

我收到容器不存在的错误。我做错了什么?

1 个答案:

答案 0 :(得分:0)

首先尝试获取对容器的引用,然后仅使用相对路径从中定义CloudBlockBlob。

这是适用于我的代码:

CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();
CloudBlobContainer container = blobClient.GetContainerReference("myContainerName");

CloudBlockBlob blockBlob = container.GetBlockBlobReference("/subfolder/filename.exe");
using (fileStream == System.IO.File.OpenWrite("C:\code.exe")) {
    blockBlob.DownloadToStream(fileStream);
}