Creates a directory within the ZIP archive.

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

Syntax

Visual Basic
Public Function CreateDirectory ( _
	archiveDirectoryPath As String _
) As ZipItem
C#
public ZipItem CreateDirectory(
	string archiveDirectoryPath
)

Parameters

archiveDirectoryPath
Type: System..::..String
Path to a directory to be created.

Return Value

Newly created directory.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionThe specified path is null.
System..::..ArgumentExceptionThe specified path is empty or contains invalid characters.
System..::..InvalidOperationExceptionArchive is not opened for writing.
System..::..ObjectDisposedExceptionArchive was already disposed.
System.IO..::..PathTooLongExceptionPath is too long (longer than 65.535 characters).
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