gpt4 book ai didi

Azure 容器

转载 作者:行者123 更新时间:2023-12-04 16:35:27 28 4
gpt4 key购买 nike

谁能告诉我,为什么我们不能在 Azure 存储中的容器内创建容器?还有什么方法可以处理,我们需要在 azure 存储中创建目录层次结构?

最佳答案

您无法在容器中创建容器,因为 Windows Azure 根本不支持分层容器(您应该将容器视为“磁盘驱动器”,如 C:\ 磁盘)。但通过 CloudBlobDirectory 类支持使用目录。这是来自 Neil's blog 的示例:

protected void GetDirectoryList(String topLevelDirectoryName, String subDirectoryName)
{
CloudStorageAccount cloudStorageAccount =
CloudStorageAccount.FromConfigurationSetting(“DataConnectionString”);
CloudBlobClient cloudBlobClient = cloudStorageAccount.CreateCloudBlobClient();

CloudBlobDirectory topLevelDirectory = cloudBlobClient.GetBlobDirectoryReferencetopLevelDirectoryName);

CloudBlobDirectory subDirectory = topLevelDirectory.GetSubdirectory(subDirectoryName);

IEnumerable<IListBlobItem> blobItems = subDirectory.ListBlobs();
foreach (IListBlobItem blobItem in blobItems)
{
Uri uri = blobItem.Uri;
}
}

关于Azure 容器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11080847/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com