IgnoreCase Property

DotNetZip

Ionic Zip Library v1.9.1.6 IgnoreCase Property
ReferenceIonic.ZipZipOutputStreamIgnoreCase
Whether the ZipOutputStream should use case-insensitive comparisons when checking for uniqueness of zip entries.
Declaration Syntax
C# Visual Basic Visual C++
public bool IgnoreCase { get; set; }
Public Property IgnoreCase As Boolean
	Get
	Set
public:
property bool IgnoreCase {
	bool get ();
	void set (bool value);
}
Remarks

Though the zip specification doesn't prohibit zipfiles with duplicate entries, Sane zip files have no duplicates, and the DotNetZip library cannot create zip files with duplicate entries. If an application attempts to call PutNextEntry(String) with a name that duplicates one already used within the archive, the library will throw an Exception.

This property allows the application to specify whether the ZipOutputStream instance considers ordinal case when checking for uniqueness of zip entries.

Assembly: Ionic.Zip (Module: Ionic.Zip) Version: 1.9.1.8 (1.9.1.8)