I am using azure sdk for cpp, and I am using option ListBlobsByHierarchy.
When I use ListBlobsByHierarchy, I get result almost as I have expected, all the blobs are there, all the virtual directories are there.
The problems is with folders that are not virtual directories, not blobs.
If I create a blob folder1/folder2/blob.txt, in azure I will see folder1->folder2->blob.txt.
But if I try to list root directory and to get a folder1 as a result, it fails.
I have tried to use ListBlobs, but it reads whole container and implementing filter for root, or any other directory is complicated and very slow.
Is there an options or way to fetch that folder1 with ListBlobsByHierarchy?