我正在审查 Azure 文件共享服务。我想确定创建目录需要什么。没有为这种类型的活动进行明确的配置 - 所以我只是尝试运行一个测试场景来创建一个目录。该目录将在根目录下创建。使用代码:
CloudStorageAccount storageAccount = CloudStorageAccount.Parse(connect);
CloudFileClient fileClient = storageAccount.CreateCloudFileClient();
CloudFileShare fileShare = fileClient.GetShareReference("fileaccess");
if (fileShare.Exists())
{
CloudFileDirectory rootDirectory = fileShare.GetRootDirectoryReference();
if (rootDirectory.Exists())
{
CloudFileDirectory customDirect =
rootDirectory.GetDirectoryReference("TEST");
if (!customDirect.Exists())
{
rootDirectory.Create();
}
}
}
结果是以下错误:
远程服务器返回错误:(405) Method Not Allowed.<<<
我认为这是 Azure 上的配置 - 但我看不到 Azure 上的哪个位置可以允许此操作。
彼得