I would like to use a loop for uploading some files to a blob container. i.e.files xaa,xab,xac
I have tried the following loop but no success
import string
for i in string.lowercase[0:2]:
block_blob_service.create_blob_from_path(
'my_container',
'xa%s' % i,
'/pathtomylocalfile/xa%s' % i)
while this works
block_blob_service.create_blob_from_path(
'my_container',
'xaa',
'/pathtomylocalfile/xaa')