访问网络路径并将文件复制到系统= c#

发布于 2024-09-28 17:07:32 字数 123 浏览 3 评论 0原文

我想创建一个小型 C# 应用程序。表单中有一个文本框和一个按钮。如果有人输入文件的网络路径并按下按钮,则应用程序必须将该文件复制到该系统内的文件夹中。我该怎么做?

如何访问网络路径以及如何将该路径中的文件复制到系统?

i want to create a small c# application. there is a text box and a button in form. if anyone enter a network path for a file and press the button, then the application must copy that file to a folder within that system. How can i do this.?

How to access a network path and how can i copy the file in that path to the system??

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

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

发布评论

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

评论(2

向日葵 2024-10-05 17:07:33

网络路径通过完整的 UNC 访问,即 \Server\Share\drive\file。只要您有访问它们的凭据。您可以使用 system.io.file.copy 来移动文件。

Net work paths are accessed by there full UNC ie \Server\Share\drive\file. As long as you have credentials to access them. You can use system.io.file.copy to move the files.

放低过去 2024-10-05 17:07:32

您可以使用.net 中的OpenFileDilog 类来浏览文件。

您还可以访问这些链接以获取复制和其他功能。

http://msdn.microsoft.com/en-us/library/cc148994.aspx

http:// /msdn.microsoft.com/en-us/library/system.io.file.copy(VS.71).aspx

You can use the OpenFileDilog class in .net to browse through the files.

Also you can visit these links for Copy and other functionalities.

http://msdn.microsoft.com/en-us/library/cc148994.aspx

http://msdn.microsoft.com/en-us/library/system.io.file.copy(VS.71).aspx

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