File: AppendText

AppendText

Opens a file to be written to starting at the end of the file.

 Public Function AppendText(
	  ByVal Path As String ) As StreamWriter

Parameters

Path
[ByVal] String. The name of the file to be appended to.

Return Values

StreamWriter -  A StreamWriter object used to write to the file.

Remarks

The StreamWriter uses a UTF8Encoding declared as Cor.NewUTF8Encoding(False, True).

See Also

Project VBCorLib Overview | Class File Overview | StreamWriter