小编EEE*_*EEH的帖子

AzureBlob 上传错误:指定的 Blob 已存在

我每天都在尝试将文件上传到 Azure 容器。

上传具有相同文件的文件时出现错误:“指定的 blob 已存在”(我想覆盖该文件)

from azure.storage.blob import BlobServiceClient, BlobClient, ContainerClient

conn_str = yml['AZURE_BLOB']['CONN_STR']
container_name = yml['AZURE_BLOB']['CONTAINER_NAME']

# Create the BlobServiceClient that is used to call the Blob service for the storage account
blob_service_client = BlobServiceClient.from_connection_string(conn_str=conn_str)

# Create a blob client using the local file name as the name for the blob
blob_client = blob_service_client.get_blob_client(container=container_name, blob=destination_file_name)

# Upload the created file
data = fs.open(source_path,mode='rb').read()
blob_client.upload_blob(data)

print(destination_file_name+'\t......[DONE]')
Run Code Online (Sandbox Code Playgroud)

错误信息:

azure.core.exceptions.ResourceExistsError: The specified blob already exists.
RequestId:13d062cd-801e-00a4-77c7-a81c56000000
Time:2019-12-02T04:18:06.0826908Z
ErrorCode:BlobAlreadyExists
Error:None
Run Code Online (Sandbox Code Playgroud)

python azure azure-storage azure-storage-blobs

12
推荐指数
1
解决办法
1万
查看次数