Microsoft Azure: How to create sub directory in a blob container

前端 未结 9 1748
清酒与你
清酒与你 2020-11-27 16:01

How to create a sub directory in a blob container

for example,

in my blob container http://veda.blob.core.windows.net/document/

If I store some files it

9条回答
  •  悲&欢浪女
    2020-11-27 16:18

    There is actually only a single layer of containers. You can virtually create a "file-system" like layered storage, but in reality everything will be in 1 layer, the container in which it is.

    For creating a virtual "file-system" like storage, you can have blob names that contain a '/' so that you can do whatever you like with the way you store. Also, the great thing is that you can search for a blob at a virtual level, by giving a partial string, up to a '/'.

    These 2 things, adding a '/' to a path and a partial string for search, together create a virtual "file-system" storage.

提交回复
热议问题