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 :
Folders are like :
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
There are more option and example you can find it here.
This is the link to the nuget package.
这篇关于如何使用 ListBlobsSegmentedAsync 从 Azure BLOB 中的目录中获取所有文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!