我想访问与我在同一网络上的其他计算机上的文件。我还需要在执行此操作时进行身份验证。
例如;
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
我该怎么办?