Discuss this help topic in SecureBlackbox Forum

TElZipArchiveDirectoryEntry.RemoveEntry

TElZipArchiveDirectoryEntry     See also     


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


Removes an archive directory entry.

Declaration

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

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

[Pascal]
    function RemoveEntry(Entry : TElZipArchiveDirectoryEntry): boolean;
    function RemoveEntry(APath : string): boolean;

[C++]
    bool RemoveEntry(TElZipArchiveDirectoryEntry &Entry);
    bool RemoveEntry(TElZipArchiveDirectoryEntry *Entry);
    bool RemoveEntry(const std::string &APath);
    bool RemoveEntry(const std::string &APath, bool CaseSensitive);

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

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

Parameters

  • Entry - the entry to be removed
  • APath - path to the file or directory to be removed
  • CaseSensitive - ...

Return value

    Returns True if the entry was successfully removed and False otherwise.

Description

    Use this method to remove single entry from the archive directory.

See also:     Entries     AddEntry    

Discuss this help topic in SecureBlackbox Forum