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

C#写TXT文档

时间:2014-11-01 14:47:07      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   os   sp   div   on   log   

//C#写TXT文档          
 String strDir = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase);
            string filePath = strDir + "\\putin.txt";
            FileStream fs = new FileStream(filePath, FileMode.Append);
            StreamWriter sw = new StreamWriter(fs);
            //开始写入
            sw.Write(sUsr + "\r\n");
            sw.Write(sPwd + "\r\n");
            //清空缓冲区
            sw.Flush();
            //关闭流
            sw.Close();
            fs.Close()

 

C#写TXT文档

标签:style   blog   io   color   os   sp   div   on   log   

原文地址:http://www.cnblogs.com/fish7/p/4067063.html

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