本文介绍了显示进度条C#的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

亲爱的所有人,



如何在.net 4.5中使用System.IO.Compression压缩/解压缩时显示进度条。我使用下面的语句压缩文件/文件夹: -



ZipFile.CreateFromDirectory(txtSource.Text,txtDestination.Text.Trim()+Backup.zip) ;

如果有其他工具可以请告诉我。



问候,



Anil Kumar

Dear All,

How to show progress bar when compressing/uncompressing with "System.IO.Compression" in .net 4.5. I am using below statement to compress files/folder: -

ZipFile.CreateFromDirectory(txtSource.Text, txtDestination.Text.Trim() + "Backup.zip");
If other tool is available kindly let me know.

Regards,

Anil Kumar

推荐答案


这篇关于显示进度条C#的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-01 19:39