Windows Universal App - Download all Blobs from Azure Container

前端 未结 1 535
轮回少年
轮回少年 2021-01-24 06:23

I have a Universal Windows app.

I am trying to download all blobs from an azure container when the app starts. This is my code:

 public MainPage()
    {
         


        
相关标签:
1条回答
  • 2021-01-24 06:56

    You need to enumerate the blobs in the container, with container.listBlobsSegmentedAsync(). The container reference doesn't just have a list of blobs automatically downloaded with it.

    For reference, see here.

    0 讨论(0)
提交回复
热议问题