.NET:如何使用 Windows“复制文件”复制文件对话

发布于 2024-08-27 13:19:43 字数 120 浏览 6 评论 0原文

.NET:如何使用 Windows“复制文件”对话框复制文件。我需要批量复制多个文件。是否存在任何 .NET 2.0 库/方法允许我以跨平台方式执行此操作,而无需调用 Windows 平台特定的库。

提前致谢。

.NET: How can I copy the files using Windows "Copy Files" dialog. I need to bulk copy multiple files. Does there exists any .NET 2.0 library/method that allows me to do it in crossplatform manner without invoking Windows platform specific libraries.

Thanks in advance.

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

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

发布评论

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

评论(6

微凉徒眸意 2024-09-03 13:19:43

SHFileOperation,标准.NET框架很好地支持它。添加对 Microsoft.VisualBasic.dll 的引用并使用 Microsoft.VisualBasic.FileIO.FileSystem.CopyDirectory() 方法。有多个重载可供您控制 UI 的外观以及如何处理错误。

SHFileOperation, it is well supported by the standard .NET framework. Add a reference to Microsoft.VisualBasic.dll and use the Microsoft.VisualBasic.FileIO.FileSystem.CopyDirectory() method. Several overloads are available that allows you to control what the UI looks like and how to handle errors.

与风相奔跑 2024-09-03 13:19:43

为了使用“Windows '复制文件'对话框”,您需要调用“Windows 平台特定库”。

In order to use the "Windows 'Copy Files' Dialog" you will be required to invoke "Windows platform specific libraries."

简单 2024-09-03 13:19:43

Google for IProgressDialog - 这是一个为您提供您请求的功能的界面

Google for IProgressDialog - this is an Interface that gives you the functionality that you request

两仪 2024-09-03 13:19:43

也许您会在 Windows API 代码包 中找到所需的功能

。可能会以丑陋的方式工作:创建一个不可见的Windows资源管理器窗口,并操纵它来启动复制过程。

Maybe you'll find the needed functionality at the Windows API Code Pack

If everything else fails, it may work the ugly way: create an invisible Windows Explorer window, and manipulate it to start a copying process.

北城挽邺 2024-09-03 13:19:43

在.NET 中,您可以创建自己的对话框。

但这不一定是一项艰巨的任务:

  • 如果您有 VS2005,则解压位于 C:\Program Files (x86)\Microsoft Visual Studio 8\Common7\VS2005ImageLibrary 的 VS2005ImageLibrary.zip 64 位系统上的 或 32 位系统上的 C:\Program Files\Microsoft Visual Studio 8\Common7\VS2005ImageLibrary

  • 解压 zip 文件后,将出现几个文件复制对话框动画的 GIF 动画。这些也采用 .AVI 格式。

  • 选择一个 GIF 动画。

  • 创建一个带有图片框的对话框。将 GIF 分配给图片框的 image 属性。

  • 在动画下方添加标签以指定要复制的文件。

  • 根据需要使用更新对话框的线程来驱动文件复制操作。

In .NET you can make your own dialog.

It's not necessarily a difficult task though:

  • If you have VS2005 then unpack the VS2005ImageLibrary.zip located at C:\Program Files (x86)\Microsoft Visual Studio 8\Common7\VS2005ImageLibrary on a 64 bit system or C:\Program Files\Microsoft Visual Studio 8\Common7\VS2005ImageLibrary on a 32 bit system.

  • Once you have unpacked the zip file, there will several animated GIF's of the file copy dialog's animation. These also come in .AVI format.

  • Choose one of the animated GIFs.

  • Create a dialog with a picture box on it. Assign the GIF to the picture box's image property.

  • Add a label below the animation to specify what file is being copied.

  • Drive the file-copy operation using threads updating the dialog as necessary.

空气里的味道 2024-09-03 13:19:43

问题是它并不是真正的“Windows 复制文件对话框”,而是资源管理器的对话框。因此,必须找到一种以编程方式控制资源管理器的方法。 (可以通过 COM 或 WMI 实现)

The problem is that it's not really "Windows's Copy Files' Dialog", it's Explorer's dialog. So, it's have to find a way to programmatically control Explorer. (May be possible via COM or WMI)

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