如何从通过 LAN 连接的另一台计算机访问文件?

发布于 2024-09-16 02:31:48 字数 77 浏览 7 评论 0 原文

任何人都可以提供资源来学习通过 LAN 在计算机之间建立连接并检索文件吗?

编辑: 我可以像在本地计算机上那样浏览文件夹吗?

Can anyone provide the resource to learn making connection between computers over the LAN and retrieve files?

EDIT:
And can I browse the folders like its done in the local machine?

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

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

发布评论

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

评论(3

愁杀 2024-09-23 02:31:48

只需使用 UNC 路径即可。另一台计算机应该有一个共享文件夹。

\\OtherComputerName\SharedFolderName\FileYouWantName.txt

在 vb 中使用该路径打开/读取文件,就像使用本地路径一样。

Just use the UNC path. The other computer should have a folder shared.

\\OtherComputerName\SharedFolderName\FileYouWantName.txt

Use that path in vb to open/read the file just as you would a local path.

清风挽心 2024-09-23 02:31:48
Dim f As FileStream = File.Open("\\server\folder\subfolder\file.txt",FileMode.Open)
Dim f As FileStream = File.Open("\\server\folder\subfolder\file.txt",FileMode.Open)
沐歌 2024-09-23 02:31:48

如果文档位于另一台计算机上的共享上,您可以使用其他答案(UNC 路径:\server\share\file.doc)。 WPF 确实重点支持 XPS 文件,但如果您想在应用程序中打开 Word 文件,可以查看 这篇文章

如果您只想启动 Word 并打开文件,则必须查看 Office Interop 程序集。像这样的东西应该可以工作(不过我自己还没有测试过):

Dim wordApplication As New Word.Application
Dim document As New Word.Document

document = wordApplication .Documents.Open("\\server\share\file.doc")

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):

Dim wordApplication As New Word.Application
Dim document As New Word.Document

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