When I am downloading blobs from Azure:
$BlobName = "20171019/fac/file.jpg"
Get-AzureStorageBlob -Container $ContainerName -Blob $BlobName
By using above command I am getting only single file.
Get-AzureStorageBlob -Container $ContainerName
By using this I am getting all blobs from container.
20171019
is folder name in container,
then sub folder fac
.
My requirement is to download all blobs from Fac
folder.