代码之家  ›  专栏  ›  技术社区  ›  Giovanni Galbo

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

  •  0
  • Giovanni Galbo  · 技术社区  · 5 年前

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

    这是我的代码:

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

    任何帮助都将不胜感激。

    0 回复  |  直到 5 年前
        1
  •  3
  •   Adam Smith - Microsoft Azure    5 年前

    存储仿真程序当前不支持文件服务和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 .