使用 Python3 请求模块和PUT Blob Azure Rest API将文件上传到 Azure 存储:
file_name = "testfile.txt"
url = f"https://<storageaccount>.blob.core.windows.net/test/{file_name}?sv=<SASTOKEN>"
with open(file_name, 'rb') as data:
headers = {
'x-ms-version': '2019-02-02',
'x-ms-date': 'Mon, 30 Mar 2020 17:20:00 GMT',
'x-ms-blob-type': 'BlockBlob',
'x-ms-access-tier': 'Cool'
}
response = requests.put(
url,
data=data,
headers=headers
)
print(f"Response {response}")
这适用于有内容的文件。但是,当尝试上传一个空文件时,我得到一个400
响应代码。如何上传空文件?