ZipArchive.CreateEntry Method (String, CompressionLevel)
Creates an empty entry in the Zip archive with the specified entry name. There are no restrictions on the names of entries. The last write time of the entry is set to the current time. If an entry with the specified name already occurs in the archive, a second entry will be created that has the same name.
Namespace: Microsoft.TeamFoundation.Framework.Server
Assembly: Microsoft.TeamFoundation.Framework.Server (in Microsoft.TeamFoundation.Framework.Server.dll)
public ZipArchiveEntry CreateEntry( string entryName, CompressionLevel compressionLevel )
Parameters
- entryName
- Type: System.String
A path relative to the root of the archive that indicates the name of the entry to be created.
- compressionLevel
- Type: Microsoft.TeamFoundation.Framework.Server.CompressionLevel
The level of the compression (speed/memory vs. compressed size trade-off).
Return Value
Type: Microsoft.TeamFoundation.Framework.Server.ZipArchiveEntryA wrapper for the newly created file entry in the archive.
| Exception | Condition |
|---|---|
| ArgumentException | entryName is a zero-length string. |
| ArgumentNullException | entryName is null. |
| NotSupportedException | The ZipArchive does not support writing. |
| ObjectDisposedException | The ZipArchive has already been closed. |
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.