我从网络上另一台计算机上的 Windows 服务读取文件时遇到问题。
如果我在本地有一个文件,我只需给出路径,例如..C:\test\
我只是写C:\\Test\\
了,效果很好,但是在具有此地址的服务器上\\\Server\Test\
我不知道该写什么...我希望得到一些帮助!
/缺口
我从网络上另一台计算机上的 Windows 服务读取文件时遇到问题。
如果我在本地有一个文件,我只需给出路径,例如..C:\test\
我只是写C:\\Test\\
了,效果很好,但是在具有此地址的服务器上\\\Server\Test\
我不知道该写什么...我希望得到一些帮助!
/缺口
我想你只是在寻找:
string myPath = @"\\Server\Test";
或者:
string myPath = "\\\\Server\\Test";
这似乎与 SQL-Server 无关,只是一个简单的 C# 字符串问题。
一般来说,如果您想要的路径中通常有两个相邻的(例如),则只需\
替换为\\
\
\\server
\\\\
If it is a windows local machine Windows try to change the folder (x86), i have the same problem some time ago and for some reason is not working in the default folder x86., or if is a SQL server take a look at this post.
Don't forget that you need to create the file \Test
in folder \\Server
in order to access it.