| File: AppendAllText |
Append a text string to the end of a specified file using the supplied encoding.
Public Sub AppendAllText( ByVal Path As String, ByVal Contents As String, Optional ByVal Encoding As Encoding )
This method opens a file, appends the contents then closes the file in the call. If multiple lines need to be appended, then using this method may have performance problems.
If the file doesnt exist it will be created. If the file already exists, it will be overwritten.