我正在尝试从 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);
}
我收到容器不存在的错误。我究竟做错了什么?