ZipArchive.CheckIntegrity Method
Namespace: Rebex.IO.Compression
Assembly: Rebex.Zip.dll (version 7.0.9147)
CheckIntegrity()
Checks integrity of the ZIP archive structure.
Declaration
public ArchiveIntegrityCheckResult CheckIntegrity()
Returns
Type | Description |
---|---|
Archive |
Operation result. |
Remarks
All changes have to be saved before calling the Check
Exceptions
Type | Condition |
---|---|
Object |
Archive was already disposed. |
Invalid |
There are unsaved changes. |
Zip |
An unexpected error occurred. |
CheckIntegrity(String)
Checks integrity of the ZIP archive structure.
Declaration
public static ArchiveIntegrityCheckResult CheckIntegrity(string zipFilePath)
Parameters
Type | Name | Description |
---|---|---|
String | zipFilePath | Path to a ZIP archive file. |
Returns
Type | Description |
---|---|
Archive |
Operation result. |
Remarks
The Check
Exceptions
Type | Condition |
---|---|
Zip |
An unexpected error occurred. |
CheckIntegrity(Stream)
Checks integrity of the ZIP archive structure.
Declaration
public static ArchiveIntegrityCheckResult CheckIntegrity(Stream zipStream)
Parameters
Type | Name | Description |
---|---|---|
Stream | zipStream | A readable/seekable stream containing a ZIP archive. |
Returns
Type | Description |
---|---|
Archive |
Operation result. |
Remarks
The Check
Exceptions
Type | Condition |
---|---|
Zip |
An unexpected error occurred. |