我正在尝试使用网络方法读取文件
[WebMethod]
public string getjson()
{
string contents = File.ReadAllText("vision.json");
return contents;
}
但是未找到文件异常
System.Web.Services.Protocols.SoapException: 'Server was unable to process request. ---> Could not find file 'D:\Windows\system32\vision.json'.'
答案 0 :(得分:1)
尝试使用json文件的完整路径。
Environment.ExpandEnvironmentVariables(@"%HOME%\site\wwwroot\vision.json")