Discuss this help topic in SecureBlackbox Forum

TElTarArchiveDirectoryEntry.AddNewEntry

TElTarArchiveDirectoryEntry     See also     


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


Adds a new file to the list of directory entries.

Declaration

[C#]
    TElTarArchiveDirectoryEntry AddNewEntry(string APath);

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

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

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

[PHP]
    TElTarArchiveDirectoryEntry AddNewEntry(string $APath)

[Java]
    TElTarArchiveDirectoryEntry addNewEntry(String APath);

Parameters

  • APath - path to the new file.

Return value

Returns a reference to the newly created TElTarArchiveDirectoryEntry object.

Description

Use this method to create a new file and add it to the list of directory entries.

See also:     AddEntry     RemoveEntry     Entries    

Discuss this help topic in SecureBlackbox Forum