“未配置文件端点。”尝试使用模拟器在Azure存储中使用文件客户端时

时间:2019-02-14 22:42:40

标签: azure azure-storage azure-storage-files azure-storage-emulator

我正在尝试使用最新的模拟器(5.9)将FileClient用于Azure存储,并遇到以下异常:No file endpoint configured.

这是我的代码:

    if (CloudStorageAccount.TryParse("UseDevelopmentStorage=true", out var account))
            _fileClient = account.CreateCloudFileClient();

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:3)

存储模拟器当前不支持文件服务和SMB协议服务端点,到目前为止,当前仅支持与存储模拟器一起使用的端点如下:

Blob service: http://127.0.0.1:10000/<account-name>/<resource-path>
Queue service: http://127.0.0.1:10001/<account-name>/<resource-path>
Table service: http://127.0.0.1:10002/<account-name>/<resource-path>

可以找到 here 的更多信息。