亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

C# Zip壓縮進度條怎么添加

c#
小樊
84
2024-07-13 14:17:24
欄目: 編程語言

在C#中實現Zip壓縮進度條,可以通過使用System.IO.Compression.ZipArchive類來完成。以下是一個示例代碼,其中通過使用System.IO.Compression.ZipArchive類來壓縮文件,并通過Progress<T>類來實現進度條。

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>接口來報告進度,并在壓縮每個文件時更新進度條的值。最后,使用MessageBox顯示壓縮完成的消息。

0
大足县| 绥滨县| 如东县| 九龙城区| 五家渠市| 黑河市| 桦南县| 许昌市| 永寿县| 长顺县| 揭东县| 桂东县| 陵川县| 台南市| 郁南县| 左权县| 彝良县| 延津县| 博野县| 海阳市| 新乐市| 郯城县| 琼结县| 盘锦市| 鄂州市| 崇信县| 阳信县| 聂荣县| 伊吾县| 津南区| 东丽区| 垣曲县| 霍州市| 永登县| 平顶山市| 山西省| 石嘴山市| 延津县| 行唐县| 旌德县| 吉木萨尔县|