Discuss this help topic in SecureBlackbox Forum

TElTarArchiveDirectoryEntry.EntryWithPath

TElTarArchiveDirectoryEntry     See also     


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


Returns the directory entry given its path.

Declaration

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

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

[Pascal]
    function EntryWithPath(const APath : string) : TElTarArchiveDirectoryEntry; overload;
    function EntryWithPath(const APath : string; CaseSensitive : boolean) : TElTarArchiveDirectoryEntry; overload;

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

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

[Java]
    TElTarArchiveDirectoryEntry entryWithPath(String APath);
    TElTarArchiveDirectoryEntry 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 its path. If there is no such entry in the directory, returns null/nil/Nothing.

Description

Use this method to find the directory entry by its full path, if this entry is a directory.

See also:     EntryWithName     Entries    

Discuss this help topic in SecureBlackbox Forum