Click or drag to resize
FileWriteAllText Method (String, String, Encoding)
Creates a new file, write the contents to the file, and then closes the file. If the target file already exists, it is overwritten.

Namespace: CMS.IO
Assembly: CMS.IO (in CMS.IO.dll) Version: 8.2.23
Syntax
C#
public static void WriteAllText(
	string path,
	string contents,
	Encoding encoding
)

Parameters

path
Type: SystemString
Path to file
contents
Type: SystemString
Content to write
encoding
Type: System.TextEncoding
The character encoding to use
See Also