如何在CloudBlobContainer.ListBlobs()中使用prefix参数从Azure Blob存储中的虚拟文件夹中获取文件

时间:2019-01-22 13:00:35

标签: c# azure azure-storage azure-storage-blobs

我正在尝试在Azure blob存储中的单个虚拟文件夹中获取列表。这些文件以/ {container} / {classification} / {title}文件夹结构进行组织,所有文件都位于“ title”虚拟文件夹中。

这是我使用的没有前缀的功能,但是当我提供前缀时无法返回任何结果。

public static List<string> List(string classification, string title, StorageAccount sa)
{
    List<string> fileList = new List<string>();
    CloudBlobContainer container = GetBlobContainer(sa);
    var prefix = $"/{container.Name}/{classification}/{title}/";
    Console.WriteLine(prefix);

    var list = container.ListBlobs(prefix, useFlatBlobListing: true);

    foreach (var blob in list)
    {
        var blobFileName = blob.Uri.AbsolutePath;
        fileList.Add(blobFileName);
    }

    return fileList;
}

1 个答案:

答案 0 :(得分:1)

您不需要在前缀中包含容器名称。请更改以下代码行:

var prefix = $"/{container.Name}/{classification}/{title}/";

收件人:

var prefix = $"{classification}/{title}/";

这将列出所有以该前缀开头的Blob名称。