How to get all files from a directory in Azure BLOB using ListBlobsSegmentedAsync(如何使用 ListBlobsSegmentedAsync 从 Azure BLOB 中的目录中获取所有文件)
问题描述
While trying to access all files of the Azure blob folder, getting sample code for container.ListBlobs();
however it looks like an old one.
Old Code : container.ListBlobs();
New Code trying : container.ListBlobsSegmentedAsync(continuationToken);
I am trying to use the below code :
container.ListBlobsSegmentedAsync(continuationToken);
Folders are like :
Container/F1/file.json
Container/F1/F2/file.json
Container/F2/file.json
Looking for the updated version to get all files from an Azure folder. Any sample code would help, thanks!
Update: Getting all files name from a directory with Azure.Storage.Blobs v12 - Package
var storageConnectionString = "DefaultEndpointsProtocol=...........=core.windows.net";
var blobServiceClient = new BlobServiceClient(storageConnectionString);
//get container
var container = _blobServiceClient.GetBlobContainerClient("container_name");
List<string> blobNames = new List<string>();
//Enumerating the blobs may make multiple requests to the service while fetching all the values
//Blobs are ordered lexicographically by name
//if you want metadata set BlobTraits - BlobTraits.Metadata
var blobHierarchyItems = container.GetBlobsByHierarchyAsync(BlobTraits.None, BlobStates.None, "/");
await foreach (var blobHierarchyItem in blobHierarchyItems)
{
//check if the blob is a virtual directory.
if (blobHierarchyItem.IsPrefix)
{
// You can also access files under nested folders in this way,
// of course you will need to create a function accordingly (you can do a recursive function)
// var prefix = blobHierarchyItem.Name;
// blobHierarchyItem.Name = "folderA"
// var blobHierarchyItems= container.GetBlobsByHierarchyAsync(BlobTraits.None, BlobStates.None, "/", prefix);
}
else
{
blobNames.Add(blobHierarchyItem.Blob.Name);
}
}
There are more option and example you can find it here.
This is the link to the nuget package.
这篇关于如何使用 ListBlobsSegmentedAsync 从 Azure BLOB 中的目录中获取所有文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 ListBlobsSegmentedAsync 从 Azure BLOB 中的目录中获取所有文件


- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04