Append content to a text file in the content files. If the file does not exist it will be created.


Namespace: Contensive.BaseClasses
Assembly: CPBase (in CPBase.dll)

Syntax

Visual Basic (Declaration)
Public MustOverride Sub AppendVirtual( _ 
   ByVal Filename As String,  _ 
   ByVal FileContent As String _ 
)
C#
public abstract void AppendVirtual(
   string Filename,
   string FileContent
)
C++
public:
 void AppendVirtual(
   String Filename,
   String FileContent
) abstract 
J#
public abstract void AppendVirtual(
   string Filename,
   string FileContent
)
JScript
public abstract  function AppendVirtual(
   Filename : String,
   FileContent : String
)

Parameters

Filename
The filename of the file to be appended. May include subfolders in the content file area. It should not include a leading slash. Folder slashes should be \.
FileContent
Test appended to the file

See Also