gpt4 book ai didi

python - 使用 python 将文件加载到 Azure 文件存储

转载 作者:行者123 更新时间:2023-12-03 05:42:01 25 4
gpt4 key购买 nike

我正在使用 azure 文件存储来保存多个容器实例的数据,在这一方面,它工作正常。我遇到的问题是,某些容器读取我通过 Web 界面手动加载到文件存储的数据。我需要更新它才能从 python 加载文件,但我没有找到任何有关如何执行此操作的示例。

有一个来自 Azure 的 github 存储库 https://github.com/Azure/azure-storage-python这应该可以解决这个问题,但我没有找到任何示例,只有源代码。在 Medium 和其他网站上,我找到了使用 Blob 的教程,但没有找到任何文件的教程

最佳答案

正如评论所说,samples显示文件共享的操作。我假设你想从文件共享中的文件中读取内容,代码如下:

from azure.storage.file import FileService

storageAccount='xxxxx'
accountKey='xxxxx'

file_service = FileService(account_name=storageAccount, account_key=accountKey)

# if the file in the root path of the share, please let the directory name as ''
file = file_service.get_file_to_text(share_name, directory_name, file_name)
print(file.content)

此代码获取类型为 File 的文件.

关于python - 使用 python 将文件加载到 Azure 文件存储,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58056141/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com