append to file C# code example

Example 1: c# append to file

using(StreamWriter writer = new StreamWriter("C:\\log.txt", true)) 
{ 
	writer.WriteLine("Line"); 
}

Example 2: c# append to file

File.AppendAllText(@"c:\path\file.txt", "text content" + Environment.NewLine);

Example 3: streamwriter append text

using (FileStream fs = new FileStream(fileName,FileMode.Append, FileAccess.Write))
 using (StreamWriter sw = new StreamWriter(fs))
 {
    sw.WriteLine(something);
 }

Example 4: c# append text to file

File.AppendAllText(@"c:\path\file.txt", "text content" + Environment.NewLine);