Discuss this help topic in SecureBlackbox Forum

TElTarWriter.Remove

TElTarWriter     See also     


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


Removes entries from the archive.

Declaration

[C#]
    void Remove(string Mask);

[VB.NET]
    Sub Remove(ByVal Mask As String)

[Pascal]
    procedure Remove(const Mask : string);

[C++]
    void Remove(const std::string &Mask);

[PHP]
    void Remove(string $Mask)

[Java]
    void remove(String Mask);

Parameters

  • Mask - file mask according to which files are selected for deletion.

Description

Use this method to delete a number of archive entries by their mask.

Files are chosen by mask which can be a simple mask, a set of masks, or a regular expression (read more about masks).

See also:     About file masks and regular expressions     Add    

Discuss this help topic in SecureBlackbox Forum