C# Class ZForge.Zip.ZipDirEntry

This class models an entry in the directory contained within the zip file. The class is generally not used from within application code, though it is used by the ZipFile class.
Datei anzeigen Open project: zhuangyy/Motion Class Usage Examples

Public Methods

Method Description
IsNotValidSig ( int signature ) : bool

Returns true if the passed-in value is a valid signature for a ZipDirEntry.

Read ( System s ) : ZipDirEntry

Reads one entry from the zip directory structure in the zip file.

Private Methods

Method Description
ZipDirEntry ( ) : System
ZipDirEntry ( ZipEntry ze ) : System

Method Details

IsNotValidSig() public static method

Returns true if the passed-in value is a valid signature for a ZipDirEntry.
public static IsNotValidSig ( int signature ) : bool
signature int the candidate 4-byte signature value.
return bool

Read() public static method

Reads one entry from the zip directory structure in the zip file.
public static Read ( System s ) : ZipDirEntry
s System the stream from which to read.
return ZipDirEntry