我正在尝试使用 Azure 文件服务预览作为我的两个云服务实例之间的映射驱动器,我遇到了以下博客文章,其中包含一些详细信息:
我已经注册了存储帐户的预览版并创建了一个新的存储帐户并验证了文件端点已包含在内。然后,我使用以下代码尝试以编程方式创建共享:
CloudStorageAccount account = CloudStorageAccount.Parse(System.Configuration.ConfigurationManager.AppSettings["SecondaryStorageConnectionString"].ToString());
CloudFileClient client = account.CreateCloudFileClient();
CloudFileShare share = client.GetShareReference("SCORM");
try
{
share.CreateIfNotExistsAsync().Wait();
}
catch (AggregateException e)
{
var test = e.Message;
var test1 = e.InnerException.Message;
}
在 CreateIfNotExistsAsync().Wait() 方法上,我收到了一个聚合异常,当我查看内部详细信息时,它只是说远程服务器返回了一个错误:(400) 错误请求。