在 LAN(WIFI)上使用 c#.net 将文件从 windows mobile 6.5 复制到桌面计算机
我正在使用此 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要以编程方式进行 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.