Discuss this help topic in SecureBlackbox Forum

TElZipArchiveDirectoryEntry.EntryWithPath

TElZipArchiveDirectoryEntry     See also     


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


Returns the directory entry by the full path to it.

Declaration

[C#]
    TElZipArchiveDirectoryEntry EntryWithPath(string APath);
    TElZipArchiveDirectoryEntry EntryWithPath(string APath, bool CaseSensitive);

[VB.NET]
    Function EntryWithPath(ByVal APath As String) As TElZipArchiveDirectoryEntry
    Function EntryWithPath(ByVal APath As String, ByVal CaseSensitive As Boolean) As TElZipArchiveDirectoryEntry

[Pascal]
    function EntryWithPath(const APath : string): TElZipArchiveDirectoryEntry;

[C++]
    TElZipArchiveDirectoryEntryHandle EntryWithPath(const std::string &APath);
    TElZipArchiveDirectoryEntryHandle EntryWithPath(const std::string &APath, bool CaseSensitive);

[PHP]
    TElZipArchiveDirectoryEntry EntryWithPath(string $APath)
    TElZipArchiveDirectoryEntry EntryWithPath(string $APath, bool $CaseSensitive)

[Java]
    TElZipArchiveDirectoryEntry entryWithPath(String APath);
    TElZipArchiveDirectoryEntry entryWithPath(String APath, boolean CaseSensitive);

Parameters

  • APath - full path to the entry
  • CaseSensitive - set this parameter to true if names are case-sensitive.

Return value

    Returns the directory entry by the full path to it. If there is no such entry in the directory, returns null/nil/Nothing.

Description

    Use this method to find the archive directory entry by its path. Use of this method makes sense only if IsDirectory is True.

See also:     Entries     EntryWithName    

Discuss this help topic in SecureBlackbox Forum