C# Zip壓縮進(jìn)度條怎么添加

c#
小樊
114
2024-07-13 14:17:24

在C#中實(shí)現(xiàn)Zip壓縮進(jìn)度條,可以通過(guò)使用System.IO.Compression.ZipArchive類來(lái)完成。以下是一個(gè)示例代碼,其中通過(guò)使用System.IO.Compression.ZipArchive類來(lái)壓縮文件,并通過(guò)Progress<T>類來(lái)實(shí)現(xiàn)進(jìn)度條。

using System;
using System.IO;
using System.IO.Compression;
using System.Threading.Tasks;
using System.Net;
using System.Windows.Forms;

namespace ZipProgress
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private async void btnZip_Click(object sender, EventArgs e)
        {
            string zipPath = @"C:\Users\user\Desktop\test.zip";
            string[] filesToZip = new string[] { @"C:\Users\user\Desktop\file1.txt", @"C:\Users\user\Desktop\file2.txt" };

            progressBar1.Maximum = filesToZip.Length;
            IProgress<int> progress = new Progress<int>(value =>
            {
                progressBar1.Value = value;
            });

            await Task.Run(() =>
            {
                using (FileStream zipToOpen = new FileStream(zipPath, FileMode.Create))
                {
                    using (ZipArchive archive = new ZipArchive(zipToOpen, ZipArchiveMode.Update))
                    {
                        for (int i = 0; i < filesToZip.Length; i++)
                        {
                            string fileToAdd = filesToZip[i];
                            ZipArchiveEntry readmeEntry = archive.CreateEntry(Path.GetFileName(fileToAdd));
                            using (Stream entryStream = readmeEntry.Open())
                            using (Stream fileToCompress = File.OpenRead(fileToAdd))
                            {
                                fileToCompress.CopyTo(entryStream);
                            }

                            progress.Report(i + 1);
                        }
                    }
                }
            });

            MessageBox.Show("Zip compression complete!");
        }
    }
}

在上面的示例中,使用IProgress<int>接口來(lái)報(bào)告進(jìn)度,并在壓縮每個(gè)文件時(shí)更新進(jìn)度條的值。最后,使用MessageBox顯示壓縮完成的消息。

0