要引用using System.IO; string name = DateTime.Now.ToString("yyyyMMddhhmmss");//获取当前时间 年月日时分秒 大写的MM是月,小写的mm是分钟
string str = textBox1.Text;
StreamWriter sw=new StreamWriter(@"D:\"+name+".txt");//文件保存位置
sw.Write(str);
sw.Close();
System.Windows.Forms.SaveFileDialog sfd=new SaveFileDialog();sfd.Filter="记事本(*.txt)|*.txt|所有文件(*.*)|*.*";