.NET 中的网络文件复制
我有一个运行 Samba 共享的 Ubuntu 盒子,向所有人开放。我可以通过 \ip 地址访问它,所以我知道我可以完全访问它。
在我的应用程序中,我正在尝试以下操作,但它无法通过 IP 地址(仅 DNS 名称)工作。
// val = ip address
File.Copy("\\\\" + val + "\\share\\vSphere\\vSphere.exe", Temp + "vSphere.exe", true);
我需要使用 IP 地址,因为使用 VPN 的人将无法让程序仅访问 dns 名称和 IP 地址。
I have an Ubuntu box running a Samba share open to everyone. I can access it via \ip address so I know I have full access to it.
From within my application I am trying the following but it will not work via the ip address only the DNS name.
// val = ip address
File.Copy("\\\\" + val + "\\share\\vSphere\\vSphere.exe", Temp + "vSphere.exe", true);
I need to use the IP Address as people who are VPN'ing in won't be able to have the program access the dns name only the ip address.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,尝试提供 IP 地址,如下所示,
如果存在错误,请尝试使用模拟,提供用户名和密码
First, try by giving IP address as below
if error exist try using impersonate, give user name and password