能够写入文件但不能从网络位置读取
Able to write file but not read from a network location
我有以下网络位置
Dim myfolder As String = "\10.0.0.90\myfolder\"
我可以使用以下代码在此文件夹中创建一个新文件:
File.Create (myfolder)
但是当我尝试使用下面的代码读取此文件夹的内容时出现错误。
代码
Dim orderedFiles = New System.IO.DirectoryInfo(myfolder).GetFiles()
错误
The system detected a possible attempt to compromise security. Please
ensure that you can contact the server that authenticated you.
文件写入由 ASP.Net 页面完成,而读取由 Windows 服务完成。这可能是问题所在吗?
Windows 服务 运行 为 "Local System"。我右键单击它,进入属性并将 "Log on as" 更改为某个用户帐户,现在它可以访问网络文件夹。
我有以下网络位置
Dim myfolder As String = "\10.0.0.90\myfolder\"
我可以使用以下代码在此文件夹中创建一个新文件:
File.Create (myfolder)
但是当我尝试使用下面的代码读取此文件夹的内容时出现错误。
代码
Dim orderedFiles = New System.IO.DirectoryInfo(myfolder).GetFiles()
错误
The system detected a possible attempt to compromise security. Please ensure that you can contact the server that authenticated you.
文件写入由 ASP.Net 页面完成,而读取由 Windows 服务完成。这可能是问题所在吗?
Windows 服务 运行 为 "Local System"。我右键单击它,进入属性并将 "Log on as" 更改为某个用户帐户,现在它可以访问网络文件夹。