Discuss this help topic in SecureBlackbox Forum

TElTarArchiveDirectoryEntry.RemoveEntry

TElTarArchiveDirectoryEntry     See also     


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


Removes a file from the srchive directory.

Declaration

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

[VB.NET]
    Function RemoveEntry(ByVal Entry As TElTarArchiveDirectoryEntry) 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 : TElTarArchiveDirectoryEntry) : boolean; overload;
    function RemoveEntry(const APath : string) : boolean; overload;
    function RemoveEntry(const APath : string; CaseSensitive : boolean) : boolean; overload;

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

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

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

Parameters

  • Entry - the entry to be removed.
  • APath - path to the file to be removed.
  • CaseSensitive - set this parameter to true if names are case-sensitive.

Return value

Returns true on success, and false otherwise.

Description

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

See also:     ClearEntries     Entries    

Discuss this help topic in SecureBlackbox Forum