c# streamwriter write to existing file code example
Example: c# append text to file
File.AppendAllText(@"c:\path\file.txt", "text content" + Environment.NewLine);
File.AppendAllText(@"c:\path\file.txt", "text content" + Environment.NewLine);