I want to write APIs csv result to Azure BLOB Storage using python 3.7.
BLOB path: BLOB_ACCOUNT/CONTAINER_NAME/FOLDER_NAME/Files
I'm trying to write files into directory e.g. new files should be created into BLOB_ACCOUNT/CONTAINER_NAME/FOLDER_NAME/File1 BLOB_ACCOUNT/CONTAINER_NAME/FOLDER_NAME/File2 ..
I checked method of blob service, but not sure how to specify directory name to file path.
blob_service.put_block_blob_from_path(container_name, file_name, file_path)
Thank you for your help!