0

我正在尝试使用 Azure 文件服务预览作为我的两个云服务实例之间的映射驱动器,我遇到了以下博客文章,其中包含一些详细信息:

http://blogs.msdn.com/b/windowsazurestorage/archive/2014/05/12/introducing-microsoft-azure-file-service.aspx?CommentPosted=true#commentmessage

我已经注册了存储帐户的预览版并创建了一个新的存储帐户并验证了文件端点已包含在内。然后,我使用以下代码尝试以编程方式创建共享:

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) 错误请求。

4

1 回答 1

1

您的评论是正确答案。有关详细信息,请参阅命名和引用共享、目录、文件和元数据一文。

于 2014-07-25T17:25:55.260 回答