我正在尝试编写Python代码来连接到Azure文件共享,其中URL带有一些凭据/密钥:
我正在从IDE(Visual Studio Code)运行此代码。
但是,我不知道怎么写URL信息。
from azure.storage.file import FileService
storageAccount='cocacola'
accountKey='xxxdrinksomethingxxxx'
file_service = FileService(account_name=storageAccount, account_key=accountKey)
share_name = 'dietcoke'
directory_name = 'test'
file_name = '20230728.csv'
file = file_service.get_file_to_text(share_name, directory_name, file_name)
print(file.content)
字符串
当前,错误消息为“azure.common.AzureMissingResourceHttpError:指定的父路径不存在。Error Code:ParentNotFound”
如何在这里添加URL信息代码?
1条答案
按热度按时间58wvjzkj1#
当前,错误消息为“azure.common.AzureMissingResourceHttpError:指定的父路径不存在。Error Code:ParentNotFound”
当您没有在存储帐户中指定路径或目录时,会出现上述错误。
下面是我在存储帐户中的结构:
字符串
入口:
您可以使用以下代码读取带有帐户URL和密钥的CSV文件。
为此,您需要安装azure-storage-file-share包。
验证码:
型
输出:
型
的
参考号:
Azure Storage File Share client library for Python | Microsoft Learn的