I have some images in a local folder on my windows machine. I want to upload all images to the same blob in the same container.
I know how to upload a single file with Azure Storage SDKs BlockBlobService.create_blob_from_path(), but I do not see a possibility to upload all images in the folder at once.
However, the Azure Storage Explorer provides a functionality for this, so it must be possible somehow.
Is there a function providing this service or do I have to loop over all files in a folder and run create_blob_from_path() multiple times for the same blob?

