Retrieving information from AzureStorageaccount is SLOW

Hi

I’m a new to PowerShell.

I’m trying to get the name of all blobs, in all containers from my Azure storageaccount.

My code works, but are relay slow :confused:

I have this code that retrieves all the containers:

$blobcon = Get-AzureStorageContainer -Name 68* -Context $cont
I have this code that loops through them:
foreach ($c in $blobcon.name)
{ ... }
And this code to retrieve each blob in the current container:
$blobs = Get-AzureStorageBlob -Container $c -Context $cont
Is my problem that the complete blob, with all the data, is downloaded?
I just want the name of the container and blob, is there some other (faster) way to do this?