Gets the collection of archive items stored within the ZIP archive matching the specified path or mask using the specified traversal mode.
Namespace:
Rebex.IO.Compression
Assembly:
Rebex.Zip (in Rebex.Zip.dll)
Syntax
Visual Basic |
---|
Public Function GetItems ( _ archivePathOrMask As String, _ mode As TraversalMode _ ) As ZipItemCollection |
C# |
---|
public ZipItemCollection GetItems( string archivePathOrMask, TraversalMode mode ) |
Parameters
- archivePathOrMask
- Type: System..::..String
Path (with or without a mask) to an archive item(s) or null (Nothing in Visual Basic).
- mode
- Type: Rebex.IO..::..TraversalMode
Traversal mode.
Return Value
The collection of items stored within the ZIP archive.Exceptions
Exception | Condition |
---|---|
System..::..ArgumentNullException | The specified path is null. |
System..::..ArgumentException | The specified path is empty. -or- Illegal use of wildcards in path. -or- Ambiguous usage of path and mode. |
System..::..ArgumentOutOfRangeException | The mode specified an invalid value. |
System..::..ObjectDisposedException | Archive was already disposed. |
Rebex.IO.Compression..::..ZipException | Cannot perform the requested operation, or the operation was canceled (see ProblemType for detailed information). |