Azure Blobs.ListBlobs()扩展了限制

问题描述 投票:1回答:1
var allBlobls = container
  .ListBlobls()
  .OfType<CloudBlockBlobWrapper>()
  .ToList();

我们的容器中有[个Blob,因为ListBlobs()的上限为5000,是否有办法扩展该限制不使用 ListBlobsSegmented();

c# azure blob
1个回答
0
投票
ListBlobs()方法实际上列出了斑点容器中的所有斑点。

ListBlobsSegmented()在一个调用中最多只能获取5000个Blob,如果有更多Blob,它会返回一个延续令牌。但是ListBlobs()方法在内部处理延续标记,并向您返回所有斑点的列表。

© www.soinside.com 2019 - 2024. All rights reserved.