使用授权c#访问局域网上的文件

时间:2017-10-20 11:32:47

标签: c# file networking lan

我想访问与我在同一网络上的其他计算机上的文件。我还需要在执行此操作时进行身份验证。

例如;

My Local IP : 10.1.1.138
Target Local IP: 10.1.1.235
File Location is \\10.1.1.235\FolderName\example.txt

Username for target machine is: "username"
Password for target machine is: "password"

我想这样做:

string data = File.GetAllText(@"\\10.1.1.235\FolderName\example.txt");   //with authentication

我该怎么办?

0 个答案:

没有答案