.NET:如何使用 Windows“复制文件”复制文件对话
.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
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.
为了使用“Windows '复制文件'对话框”,您需要调用“Windows 平台特定库”。
In order to use the "Windows 'Copy Files' Dialog" you will be required to invoke "Windows platform specific libraries."
Google for IProgressDialog - 这是一个为您提供您请求的功能的界面
Google for IProgressDialog - this is an Interface that gives you the functionality that you request
也许您会在 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.
在.NET 中,您可以创建自己的对话框。
但这不一定是一项艰巨的任务:
如果您有 VS2005,则解压位于
C:\Program Files (x86)\Microsoft Visual Studio 8\Common7\VS2005ImageLibrary 的
或 32 位系统上的VS2005ImageLibrary.zip
64 位系统上的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 atC:\Program Files (x86)\Microsoft Visual Studio 8\Common7\VS2005ImageLibrary
on a 64 bit system orC:\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.
问题是它并不是真正的“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)