C# : How to report progress while creating a zip file?

前端 未结 1 1275
难免孤独
难免孤独 2020-12-19 21:39

Update: Got it working updated my working code

Here is what I have so far

 private async void ZipIt(string src, string dest)
    {
        await Task         


        
相关标签:
1条回答
  • 2020-12-19 22:25

    I guess you are using DotNetZip ?

    There are numerous issue in the code you've shown:

    • you don't call ReportProgress in DoWork so how do you expect to get the progress ?
    • even if you did so the problem is with zip.Save() you wouldn't get a progress (beside 100%) because it would not return unless it is finished.

    Solution

    Use tasks and SaveProgress event instead :

    private async void MainWindow_Loaded(object sender, RoutedEventArgs e)
    {
        await Task.Run(() =>
        {
            using (var zipFile = new ZipFile())
            {
                // add content to zip here 
                zipFile.SaveProgress +=
                    (o, args) =>
                    {
                        var percentage = (int) (1.0d/args.TotalBytesToTransfer*args.BytesTransferred*100.0d);
                        // report your progress
                    };
                zipFile.Save();
            }
        });
    }
    

    Doing this way, your UI will not freeze and you will get a periodic report of the progress.

    Always prefer Tasks over BackgroundWorker since it's official approach to use now.

    0 讨论(0)
提交回复
热议问题