Discuss this help topic in SecureBlackbox Forum

TElTarArchiveDirectoryEntry.AddEntry

TElTarArchiveDirectoryEntry     See also     


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


Adds a file to the list of directory entries.

Declaration

[C#]
    TElTarArchiveDirectoryEntry AddEntry(string APath);

[VB.NET]
    Function AddEntry(ByVal APath As String) As TElTarArchiveDirectoryEntry

[Pascal]
    function AddEntry(const APath : string) : TElTarArchiveDirectoryEntry; overload;

[C++]
    TElTarArchiveDirectoryEntryHandle AddEntry(const std::string &APath);

[PHP]
    TElTarArchiveDirectoryEntry AddEntry(string $APath)

[Java]
    TElTarArchiveDirectoryEntry addEntry(String APath);

Parameters

  • APath - path to the entry to be added.

Return value

Returns a reference to the newly added TElTarArchiveDirectoryEntry item of the list.

Description

Use this method to add an existing file to the list of directory entries.

See also:     AddNewEntry     RemoveEntry     Entries    

Discuss this help topic in SecureBlackbox Forum