I'll be copying a large file over the network using my winforms app and I need to show some kind of progress bar. Rather than cook up my own copy routine, I was thinking that it might be better to simply show the built-in file copy dialog.

I would also need a "Copy complete" and "Copy failed" notification.

I need this to work on Windows XP, Vista and 7. Is there a way to call to engage this functionality from my c# code?

link|improve this question

you better use xcopy or robocopy instead. Possible duplicate stackoverflow.com/q/3124038/380384 – ja72 Jul 14 '11 at 1:20
I don't know if the framework has support for this, you may have to p/invoke the SHFileOperation() function. – Jeff Mercado Jul 14 '11 at 1:20
1  
It is readily available in the .NET framework, Microsoft.VisualBasic.FileIO.FileSystem.CopyFile(). Four overloads that let you control the UI and the error reporting options. – Hans Passant Jul 14 '11 at 1:23
feedback

1 Answer

up vote 2 down vote accepted

Answer taken from: http://msdn.microsoft.com/en-us/magazine/cc163304.aspx

Windows Vista does indeed include a new copy engine that supports exactly what you're looking to do. However, it's possible that previously existing functionality may meet your needs. For example, if you want to copy, move, rename, or delete an individual file or directory, you can take advantage of SHFileOperation (exposed from shell32.dll), which is already wrapped by the Visual Basic® runtime. If you're using Visual Basic 2005, you can simply use functionality from the My namespace, for example:

My.Computer.FileSystem.CopyDirectory(
   sourcePath, destinationPath, UIOption.AllDialogs)

Accomplishing the same thing in C# involves only a little more work, adding a reference to Microsoft.VisualBasic.dll (from the Microsoft® .NET Framework installation directory) and using code such as the following:

using Microsoft.VisualBasic.FileIO;
...
FileSystem.CopyDirectory(
    sourcePath, destinationPath, UIOption.AllDialogs);

When run, this will result in the same progress UI you'd see if you were doing the same file operations from Windows Explorer. In fact, when running on Windows Vista, you automatically get the new Window Vista progress UI, as shown in Figure 1. enter image description here

link|improve this answer
When citing a source, cite the source in block quotes. Answers that just cite something else without any additional context or explanation are generally frowned upon. – Tim Post Jul 21 '11 at 7:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.