作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在将 Azure 追加 blob 服务与append_blob_from_path 函数结合使用。
有什么方法可以检查追加是否成功吗?我想要这个的原因是因为在附加文件后我希望删除它。
只是做
append_blob_service.append_blob_from_path(self.container_name, blob_name, file_name)
delete_file(file_name)
似乎会导致delete_file有时删除append_blob_service正在尝试上传的文件。
最佳答案
我测试append_blob_from_path
在我这边,方法是同步,我不确定你为什么会遇到这个问题。
我使用azure-storage-blob 2.1.0
和Python 3.7.4
,您可以检查如下代码示例,在我的示例中,我附加了一个文件大小为50 MB(52428800 B)
,使用progress_callback func(current or Total)
,流程足够清晰。
from azure.storage.blob import AppendBlobService
import os
account_name = "xxxxxxxxx"
account_key = "xxxxxxxxx"
append_blob_service = AppendBlobService(account_name=account_name, account_key=account_key)
def generate_progress_callback():
def progress_callback(current, total):
print('({}, {})'.format(current, total))
return progress_callback
append_blob_service.append_blob_from_path(container_name="test1", blob_name="test123.txt",
file_path=r"C:\Users\joyw\Desktop\test1234.txt",
progress_callback=generate_progress_callback())
print("hello")
path = r"C:\Users\joyw\Desktop\test1234.txt"
if os.path.exists(path):
os.remove(path)
print("delete file")
else:
print("no such file:%s" % my_file)
结果:
关于python - Azureappend_blob_from_path,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58591453/
我正在将 Azure 追加 blob 服务与append_blob_from_path 函数结合使用。 有什么方法可以检查追加是否成功吗?我想要这个的原因是因为在附加文件后我希望删除它。 只是做 ap
我是一名优秀的程序员,十分优秀!