beginner
I've been using this code for a while, always checking, and today, trying to list my blob container files, some weren't showing up. By checking in Azure Storage Explorer, I can see it and download it from there, but not from the code. It is not listed and does not generate any errors, not even in the logs. I've tried the same code on the company server and on colab, always the same scenario.
I'm using:
name_starts_with_download = "/zip/2022"
#create the BlobServiceClient object which will be used to create a container client
blob_service_client = BlobServiceClient.from_connection_string(connect_str)
#list all containers
container_client = blob_service_client.get_container_client(container_download)
blob_list = container_client.list_blobs(name_starts_with = name_starts_with_download)
for blob in blob_list:
print(blob.name)

