Click or drag to resize
AbstractFileAppendAllText Method (String, String)
Opens a file, appends the specified string to the file, and then closes the file. If the file does not exist, this method creates a file, writes the specified string to the file, then closes the file.

Namespace: CMS.IO
Assembly: CMS.IO (in CMS.IO.dll) Version: 9.0.0
Syntax
C#
public abstract void AppendAllText(
	string path,
	string contents
)

Parameters

path
Type: SystemString
Path
contents
Type: SystemString
Content to write
See Also