Deletes files and/or directories within the ZIP archive.

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

Syntax

Visual Basic
Public Function Delete ( _
	archivePathOrMask As String, _
	mode As TraversalMode _
) As ArchiveOperationResult
C#
public ArchiveOperationResult Delete(
	string archivePathOrMask,
	TraversalMode mode
)

Parameters

archivePathOrMask
Type: System..::..String
Path (with or without a mask) to an archive item(s).
mode
Type: Rebex.IO..::..TraversalMode
Traversal mode.

Return Value

Operation result.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionThe specified path is null.
System..::..ArgumentExceptionThe specified path is empty. -or- Illegal use of wildcards in path. -or- Ambiguous usage of path and mode.
System..::..ArgumentOutOfRangeExceptionThe mode specified an invalid value.
System..::..InvalidOperationExceptionArchive is not opened for writing.
System..::..ObjectDisposedExceptionArchive was already disposed.
System.IO..::..IOExceptionAn I/O error occurred.
Rebex.IO.Compression..::..ZipExceptionCannot perform the requested operation, or the operation was canceled (see ProblemType for detailed information).

Version Information

.NET Compact Framework

Supported in: 3.9, 3.5

See Also