.net付属の"Open file and add a line"を改良
メモ帳開かずにコピペできる

sp.SendKeys("^c");
var f = File.AppendText("C:\\A.txt");
f.WriteLine(clip.GetText());
f.Close();