CaseSensitiveRetrieval Property

DotNetZip

Ionic Zip Library v1.9.1.6 CaseSensitiveRetrieval Property
ReferenceIonic.ZipZipFileCaseSensitiveRetrieval
Indicates whether to perform case-sensitive matching on the filename when retrieving entries in the zipfile via the string-based indexer.
Declaration Syntax
C# Visual Basic Visual C++
public bool CaseSensitiveRetrieval { get; set; }
Public Property CaseSensitiveRetrieval As Boolean
	Get
	Set
public:
property bool CaseSensitiveRetrieval {
	bool get ();
	void set (bool value);
}
Remarks
The default value is false, which means don't do case-sensitive matching. In other words, retrieving zip["ReadMe.Txt"] is the same as zip["readme.txt"]. It really makes sense to set this to true only if you are not running on Windows, which has case-insensitive filenames. But since this library is not built for non-Windows platforms, in most cases you should just leave this property alone.

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