I would like to create a .txt file and write to it, and if the file already exists I just want to append some more lines:
string path = @\"E:\\AppServ\\Examp
using(var tw = new StreamWriter(path, File.Exists(path))) { tw.WriteLine(message); }