我目前正在做一个项目,我需要使用Python将本地文本文件上传到Azure Blob。我写了下面的代码来实现这一点:
def upload_blob(self, file_name, local_file_path):
file_name = 'upload_test.txt'
blob_service_client = BlobServiceClient.from_connection_string(self.storage_connection_str,timeout=120)
container_client = blob_service_client.get_container_client(self.storage_container_name)
# Define the directory path and filename
directory_name = self.blob_prefix
# Create a BlobClient object for the file
blob_client = container_client.get_blob_client(directory_name + "/" + file_name)
# Upload the file to the specified directory
with open(local_file_path, "rb") as data:
blob_client.upload_blob(data)
然而,我遇到了一个错误,代码对于字节格式的局部变量运行良好,但在尝试上载本地文本文件时遇到了问题。
我对Python和Azure Blob相当陌生,所以我不太确定如何解决这个问题。有没有人遇到过类似的问题,并找到了解决方案?任何帮助或建议将不胜感激!
先谢谢你。
1条答案
按热度按时间sdnqo3pr1#
我遇到了一个错误,代码可以很好地处理字节格式的本地变量,但在尝试上传本地文本文件时遇到了问题。
您可以使用下面的代码使用Python将文件从本地上传到Azure Blob存储。
验证码:
输出:
门户: