访问网络路径并将文件复制到系统= c#
我想创建一个小型 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
网络路径通过完整的 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.
您可以使用.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