我编写连接到 Azure 存储帐户的 ac# 程序。
给定一个 blob URI,我需要将文件下载到本地文件并执行它。
这是我的一段代码:
var blobClientCode = client.CreateCloudBlobClient();
CloudBlockBlob codeBlob = blobClientCode.GetBlockBlobReference(codeUri);
File.Create("C:\\code.exe");
using (var fileStream = File.OpenWrite("C:\\code.exe")) {
codeBlob.DownloadToStream(fileStream);
}
Process p = new Process();
p.StartInfo.FileName = "C:\\mycode.exe";
p.StartInfo.Arguments = dataUri;
p.StartInfo.CreateNoWindow = true;
p.StartInfo.RedirectStandardOutput = false;
p.StartInfo.UseShellExecute = false;
p.Start();
p.WaitForExit();
string output = p.StandardOutput.ReadToEnd();
问题是我不断收到 UnauthorizedAccess 异常。
- 当我尝试从浏览器手动下载文件(复制并粘贴 URI)时,我成功了。
- 该容器是一个公共容器。
- 我也尝试使用 WebClient.DownloadFile(),并得到了 WebException。
我错过了什么?提前致谢