Initializes a ZipArchive object with the specified ZIP archive.

Namespace:  Rebex.IO.Compression
Assembly:  Rebex.Zip (in Rebex.Zip.dll)

Syntax

Visual Basic
Public Sub New ( _
	zipFilePath As String _
)
C#
public ZipArchive(
	string zipFilePath
)

Parameters

zipFilePath
Type: System..::..String
Path to a ZIP archive file.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionzipFilePath is null.
System..::..ArgumentExceptionzipFilePath is empty or contains invalid characters. -or- The system could not retrieve the absolute path.
System..::..NotSupportedExceptionPath is in an invalid format.
System.IO..::..PathTooLongExceptionThe specified path exceed the maximum length defined by system.
System.IO..::..DirectoryNotFoundExceptionPart of the specified path was not found.
System.IO..::..FileNotFoundExceptionThe specified file path was not found.
System.Security..::..SecurityExceptionThe caller does not have the required permissions.
System..::..UnauthorizedAccessExceptionAccess to the file is denied. -or- The specified path refers to a directory.
System.IO..::..IOExceptionAn I/O error occurred.
Rebex.IO.Compression..::..ZipExceptionArchive cannot be opened (see ProblemType for detailed information).

Version Information

.NET Compact Framework

Supported in: 3.9, 3.5

See Also