我正在尝试将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()方法我得到一个Aggregate异常,当我看到内部细节时,它只是说远程服务器返回错误:(400)错误请求。
答案 0 :(得分:1)
您的评论是正确答案。有关详细信息,请参阅Naming and Referencing Shares, Directories, Files, and Metadata文章。