Click or drag to resize

FileAppendAllLines Method (String, IEnumerableString, Encoding)

Appends lines to a file, and then closes the file. If the specified file does not exist, this method creates a file, writes the specified lines to the file, and then closes the file.

Namespace:  Alphaleonis.Win32.Filesystem
Assembly:  AlphaFS (in AlphaFS.dll) Version: 2.2
Syntax
public static void AppendAllLines(
	string path,
	IEnumerable<string> contents,
	Encoding encoding
)

Parameters

path
Type: SystemString
The file to append the lines to. The file is created if it doesn't already exist.
contents
Type: System.Collections.GenericIEnumerableString
The lines to append to the file.
encoding
Type: System.TextEncoding
The character Encoding to use.
Exceptions
Remarks
The method creates the file if it doesn't exist, but it doesn't create new directories. Therefore, the value of the path parameter must contain existing directories.
See Also