在 LAN(WIFI)上使用 c#.net 将文件从 windows mobile 6.5 复制到桌面计算机

发布于 2024-10-25 02:38:49 字数 251 浏览 0 评论 0原文

我正在使用此 C#.Net 代码将网络上的文件从我的 PDA 复制到桌面计算机

System.IO.File.Copy(@"\abc.txt", @"\servername\abc\temp.txt", true);

一切都很顺利,但是每次我复制时都会弹出一个窗口,询问用户、密码、域名,然后复制成功。

我的问题是我可以从代码中隐式传递用户名、密码和域名吗?弹出窗口不应每次都出现..

任何代码片段都是值得赞赏的,谢谢...

I am using this C#.Net code to copy file on network from my PDA to Desktop computer

System.IO.File.Copy(@"\abc.txt", @"\servername\abc\temp.txt", true);

every thing is going on fine, but every time i am copying a pop up appears asking user,password,domain name and then copying is successful..

my question is can i implicitly pass user-name,password and domain name from code so that pop up should not appear every time..

any code snippets is appreciable thanks...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

烟火散人牵绊 2024-11-01 02:38:49

您需要以编程方式进行 NTLM 身份验证。我还没有花时间将其移植到托管代码,但是 这是您可以移植的本机解决方案

You need to programmatically do NTLM authentication. I've still not spent the time to port this to managed code, but here's the native solution which you can port over.

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