We have 2 containers each container has parent folders and sub-folders in it.
The sub-folders have the files.
By using the following code we can access containers in Blob Storage:
{AzureBlobStorage.ListRootFolderV2().value}
By using the following code we can access parent folders in the containers:
{ForAll(
AzureBlobStorage.ListFolderV2(Gallery1.Selected.Name).value,
{ Name: Left(Name, Len(Name) - 1) }
We are trying to access sub-folders in the parent folders by using below code but it showing the error
{Filter(
ForAll(
AzureBlobStorage.ListFolderV2(Gallery2.Selected.Name).value,
{ Name: Left(Name, Len(Name) - 1) }
),
StartsWith(Name, Gallery2.Selected.Name & "/") && Len(Name) > Len(Gallery2.Selected.Name)
)}
Error: AzureBlobStorage.ListFolderV2 failed “Status”: 404 specified container does not exist
The container is valid but not sure what is causing this issue. Any suggestions