Discuss this help topic in SecureBlackbox Forum

TElZipReader.CheckEntry

TElZipReader     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Check whether an entry could be extracted without errors.

Declaration

[C#]
    bool CheckEntry(TElZipArchiveDirectoryEntry Entry);

[VB.NET]
    Function CheckEntry(ByVal Entry As TElZipArchiveDirectoryEntry) As Boolean

[Pascal]
    function CheckEntry(Entry : TElZipArchiveDirectoryEntry) : boolean;

[C++]
    bool CheckEntry(TElZipArchiveDirectoryEntry &Entry);
    bool CheckEntry(TElZipArchiveDirectoryEntry *Entry);

[PHP]
    bool CheckEntry(TElZipArchiveDirectoryEntry $Entry)

[Java]
    boolean checkEntry(TElZipArchiveDirectoryEntry Entry);

Parameters

  • Entry - the entry to be checked.

Return value

    Returns True if the entry can be extracted without errors, and False if extraction has failed.

Description

    Use this method to check whether the specified entry could be extracted.

See also:     CheckArchive    

Discuss this help topic in SecureBlackbox Forum