如何在Azure Blob存储帐户的Azure存储资源管理器中获得到容器(文件夹)的直接链接



我想在Azure storage Explorer中获得指向我的blob存储帐户中的容器(文件夹(的直接链接。当我点击直接链接到blob容器时,它只提供到blob的根级别的链接,看起来像这样:

storageexplorer://v=1&accountid=[account id]&subscriptionid=[subscription id]&resourcetype=Azure.BlobContainer&resourcename=myblobnameV1

如何将后续文件夹路径添加到此直接链接?所以我想要如下的东西:

storageexplorer://v=1&accountid=[account id]&subscriptionid=[subscription id]&resourcetype=Azure.BlobContainer&resourcename=myblobnameV1/CountryName/StoreName/

目前上面给出了找不到资源的错误。我查阅了官方文件,但找不到任何方法。有人能帮我找到解决方案或破解吗?

问题是,Azure存储Blob中不存在文件夹。容器中只有容器和水滴。Blob定义虚拟文件夹。像Azure Portal或Azure Storage Explorer这样的工具使用blob url中的/分隔符来表示虚拟文件夹结构。

因此,答案是这是不可能的,因为没有物理文件夹,正如文档中所述:


Blob storage offers three types of resources:
- The storage account.
- A container in the storage account
- A blob in a container

来源:如何观看Azure Storage Explorer BLOB 的文件夹

最新更新