Is it possible to get a progress bar on creating archive.
Thanks
using (Stream stream = File.Create(sZipFile))
{
archive.SaveTo(stream, CompressionType.LZMA);
}
I want to display the progression to the user.Thanks