.NET 中的网络文件复制

发布于 2024-12-10 08:33:09 字数 313 浏览 0 评论 0原文

我有一个运行 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情独悲 2024-12-17 08:33:09

首先,尝试提供 IP 地址,如下所示,

File.Copy(@"\\192.100.1.23\share\vSphere\vSphere.exe", Path.combine(Temp ,"vSphere.exe"), true);

如果存在错误,请尝试使用模拟,提供用户名和密码

AppDomain.CurrentDomain.SetPrincipalPolicy(PrincipalPolicy.WindowsPrincipal);

WindowsIdentity idnt = new WindowsIdentity(username, password);

WindowsImpersonationContext context = idnt.Impersonate();

File.Copy(@"\\192.100.1.23\share\vSphere\vSphere.exe", Path.combine(Temp ,"vSphere.exe"), true);

context.Undo();

First, try by giving IP address as below

File.Copy(@"\\192.100.1.23\share\vSphere\vSphere.exe", Path.combine(Temp ,"vSphere.exe"), true);

if error exist try using impersonate, give user name and password

AppDomain.CurrentDomain.SetPrincipalPolicy(PrincipalPolicy.WindowsPrincipal);

WindowsIdentity idnt = new WindowsIdentity(username, password);

WindowsImpersonationContext context = idnt.Impersonate();

File.Copy(@"\\192.100.1.23\share\vSphere\vSphere.exe", Path.combine(Temp ,"vSphere.exe"), true);

context.Undo();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文