I used this code posted here (the one that nobugz posted) in copying files and displaying the status in progress bar. Now problem is I wanted to continuously increment the value of the progress bar while copying, especially large files. What happens in this sample code is that the value in progress bar stops on every file copied and after one file has been copied it will then increment to the size of the next file to be copied. I wanted it to work like CopyFileEx in Windows that progress bar continuously increment when copying (I cant use CopyFileEx because I wanted to have my own implementation).

Please help me on this! Thanks!

link|improve this question

47% accept rate
Your question is not very clear for me. In code you provided File.Copy function used. Its a managed wraper for CopyFile WinAPI function. Do you desire to refuse from any WinAPI function in file copy process? – Anton Semenov May 18 '11 at 12:36
Indeed, why create your own implementation? CopyFileEx would do exactly what you want. – Polity May 18 '11 at 12:54
Yeah your right, why create one if I can use an existing one. The problem is, this is what is in app specifications. – patlimosnero May 18 '11 at 13:11
1  
informit.com/guides/content.aspx?g=dotnet&seqNum=827 might be of some use. – Jim Mischel May 18 '11 at 14:30
feedback

4 Answers

up vote 3 down vote accepted

You need something like this:

    public delegate void ProgressChangeDelegate(double Persentage, ref bool Cancel);
    public delegate void Completedelegate();

    class CustomFileCopier
    {
        public CustomFileCopier(string Source, string Dest)
        {
            this.SourceFilePath = Source;
            this.DestFilePath = Dest;

            OnProgressChanged += delegate { };
            OnComplete += delegate { };
        }

        public void Copy()
        {
            byte[] buffer = new byte[1024 * 1024 * 1024]; // 1MB buffer
            bool cancelFlag = false;

            using (FileStream source = new FileStream(SourceFilePath, FileMode.Open, FileAccess.Read))
            {
                long fileLength = source.Length;
                using (FileStream dest = new FileStream(DestFilePath, FileMode.CreateNew, FileAccess.Write))
                {
                    long totalBytes = 0;
                    int currentBlockSize = 0;

                    while ((currentBlockSize = source.Read(buffer, 0, buffer.Length)) > 0)
                    {
                        totalBytes += currentBlockSize;
                        double persentage = (double)fileLength * 100.0 / totalBytes;

                        dest.Write(buffer, 0, currentBlockSize);

                        cancelFlag = false;
                        OnProgressChanged(persentage, ref cancelFlag);

                        if (cancelFlag == true)
                        {
                            // Delete dest file here
                            break;
                        }
                    }
                }
            }

            OnComplete();
        }

        public string SourceFilePath { get; set; }
        public string DestFilePath { get; set; }

        public event ProgressChangeDelegate OnProgressChanged;
        public event Completedelegate OnComplete;
    }

Just run it in separate thread and sunscribe for OnProgressChanged event

link|improve this answer
Thanks man! this is exactly what I was looking for.. Thanks a lot bro! – patlimosnero May 20 '11 at 2:27
feedback

Making your own file copy logic by using 2 streams as presented by Gal is a viable option but its not recommended solely because there is a deeply intergrated windows operation which is optimized in reliability, security and performance named CopyFileEx.

that said, in the following article: http://msdn.microsoft.com/en-us/magazine/cc163851.aspx they do exactly what you want, but ofcourse you have to use CopyFileEx

Good luck

** EDIT ** (fixed my answer, badly witten)

link|improve this answer
CopyFileEx is very broken when copying large files across the network. See blog.mischel.com/2008/10/14/copying-large-files-on-windows for details. Also, it's pretty easy to improve on the speed of CopyFileEx using two streams and a little bit of asynchronous coding. – Jim Mischel May 18 '11 at 14:29
feedback

You can copy parts of the file stream from each file, and update after each "chunk" you update. Thus it will be more continuous - you can also easily calculate the relative size of the current "chunk" you are copying relative to the total stream size in order to show the correct percentage done.

link|improve this answer
feedback

you can use Dispatcher to update your ProgressBar .

UpdateProgressBarDelegate updatePbDelegate = new UpdateProgressBarDelegate(ProgressBar1.SetValue);

Dispatcher.Invoke(updatePbDelegate, System.Windows.Threading.DispatcherPriority.Background, new object[] { ProgressBar.ValueProperty, value });
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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