当给定blob的uri在c#中失败时,从blob下载
本文关键字:blob 失败 下载 uri | 更新日期: 2023-09-27 18:09:07
我正试图从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);
}
我得到一个容器不存在的错误。我做错了什么?
尝试先获取对容器的引用,然后使用相对路径从中定义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);
}