如何从通过 LAN 连接的另一台计算机访问文件?
任何人都可以提供资源来学习通过 LAN 在计算机之间建立连接并检索文件吗?
编辑: 我可以像在本地计算机上那样浏览文件夹吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
任何人都可以提供资源来学习通过 LAN 在计算机之间建立连接并检索文件吗?
编辑: 我可以像在本地计算机上那样浏览文件夹吗?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
只需使用 UNC 路径即可。另一台计算机应该有一个共享文件夹。
在 vb 中使用该路径打开/读取文件,就像使用本地路径一样。
Just use the UNC path. The other computer should have a folder shared.
Use that path in vb to open/read the file just as you would a local path.
如果文档位于另一台计算机上的共享上,您可以使用其他答案(UNC 路径:\server\share\file.doc)。 WPF 确实重点支持 XPS 文件,但如果您想在应用程序中打开 Word 文件,可以查看 这篇文章。
如果您只想启动 Word 并打开文件,则必须查看 Office Interop 程序集。像这样的东西应该可以工作(不过我自己还没有测试过):
If the document is on a share on the other computer, you can use the other answers (the UNC path: \server\share\file.doc). WPF does focus support on XPS files, but if you want to open a Word file in your application, maybe check out this post.
If you just want to launch Word and open the file, you'll have to check out the Office Interop assemblies. Something like this should work (I haven't tested this myself though):