This sample shows how to implement progress indication in ZipForge.
Download ZipForge.NET | Learn More | All VB.NET samples
Imports System
' This namespace contains the main class - ZipForge.
' Don't forget to add a reference to the ZipForge
' assembly to your project references
Imports ComponentAce.Compression.ZipForge
' This namespace contains ArchiverException class
' required for error handling
Imports ComponentAce.Compression.Archiver
Module ProgressIndication
Dim WithEvents archiver As ZipForge = New ZipForge()
Sub Main()
' Create an instance of the ZipForge class
Try
' Set the name of the archive file we want to create
archiver.FileName = "c:\test.zip"
' open an existing ZIP file
archiver.OpenArchive(System.IO.FileMode.Open)
' set default directory for all operations
archiver.BaseDir = "c:\temp"
' extract files to c:\temp folder
archiver.ExtractFiles("*.*")
' close archive
archiver.CloseArchive()
Console.WriteLine("All files were extracted successfully")
Console.ReadLine()
Catch ae As ArchiverException
Console.WriteLine("Message: {0} Error code: {1}", ae.Message, ae.ErrorCode)
' Wait for the key to be pressed
Console.ReadLine()
End Try
End Sub
Sub archiver_OnFileProgress(ByVal sender As Object, ByVal fileName As String, ByVal progress As Double, ByVal timeElapsed As TimeSpan, ByVal timeLeft As TimeSpan, ByVal operation As ProcessOperation, ByVal progressPhase As ProgressPhase, ByRef cancel As Boolean) Handles archiver.OnFileProgress
Console.WriteLine("Processing {0}, {1}% complete, time left: {2}", fileName, progress.ToString("f2"), timeLeft)
End Sub
End Module
Download ZipForge.NET | Learn More | All VB.NET samples |