如何在 Azure Blob 存储帐户的 Azure 存储资源管理器中直接 Link 到容器(文件夹)
How to get Direct Link to Container(Folder) in Azure Storage Explorer for Azure Blob Storage Account
我想直接 link 到 Azure 存储资源管理器中我的 blob 存储帐户内的容器(文件夹)。当我单击直接 link 到 blob 容器时,它仅向 blob 的根级别提供 link,如下所示:
storageexplorer://v=1&accountid=[account id]&subscriptionid=[subscription id]&resourcetype=Azure.BlobContainer&resourcename=myblobnameV1
如何将后续文件夹路径添加到此直接link?所以我想要如下内容:
storageexplorer://v=1&accountid=[account id]&subscriptionid=[subscription id]&resourcetype=Azure.BlobContainer&resourcename=myblobnameV1/CountryName/StoreName/
目前上面给出了找不到资源的错误。我查看了官方文档,但找不到任何方法来执行此操作。谁能帮我找到解决方案或解决这个问题?
事实是,Azure 存储 Blob 中不存在文件夹。只有容器和容器内的 blob。 Blob 定义虚拟文件夹。 Azure 门户或 Azure 存储资源管理器等工具使用 blob url 中的 /
分隔符作为呈现虚拟文件夹结构的方式。
所以答案是不可能,因为没有物理文件夹,正如文档中所述:
Blob storage offers three types of resources:
- The storage account.
- A container in the storage account
- A blob in a container
来源:
我想直接 link 到 Azure 存储资源管理器中我的 blob 存储帐户内的容器(文件夹)。当我单击直接 link 到 blob 容器时,它仅向 blob 的根级别提供 link,如下所示:
storageexplorer://v=1&accountid=[account id]&subscriptionid=[subscription id]&resourcetype=Azure.BlobContainer&resourcename=myblobnameV1
如何将后续文件夹路径添加到此直接link?所以我想要如下内容:
storageexplorer://v=1&accountid=[account id]&subscriptionid=[subscription id]&resourcetype=Azure.BlobContainer&resourcename=myblobnameV1/CountryName/StoreName/
目前上面给出了找不到资源的错误。我查看了官方文档,但找不到任何方法来执行此操作。谁能帮我找到解决方案或解决这个问题?
事实是,Azure 存储 Blob 中不存在文件夹。只有容器和容器内的 blob。 Blob 定义虚拟文件夹。 Azure 门户或 Azure 存储资源管理器等工具使用 blob url 中的 /
分隔符作为呈现虚拟文件夹结构的方式。
所以答案是不可能,因为没有物理文件夹,正如文档中所述:
Blob storage offers three types of resources:
- The storage account.
- A container in the storage account
- A blob in a container
来源: