码迷,mamicode.com
首页 > Windows程序 > 详细

C#winform添加Txt文件,不重复录入且不清空

时间:2017-07-04 13:25:04      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:stream   void   日志   win   log   write   清空   string   winform   

private void textLog_TextChanged(object sender, EventArgs e)
{

FileStream fs = new FileStream(@"C:\\文件导入记录日志.txt", FileMode.Open);
StreamReader Reader = new StreamReader(fs);
string strLine = Reader.ReadLine();
while (strLine!=null && strLine!="")
{
strLine = Reader.ReadLine();
}
StreamWriter sw = new StreamWriter(fs);
sw.WriteLine(strLine+textLog.Text);
sw.Flush();
sw.Close();
fs.Close();

}

C#winform添加Txt文件,不重复录入且不清空

标签:stream   void   日志   win   log   write   清空   string   winform   

原文地址:http://www.cnblogs.com/W--Jing/p/7115868.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!