C#写TXT文档
2020-12-13 14:52
标签:style blog io color os sp div on log C#写TXT文档 标签:style blog io color os sp div on log 原文地址:http://www.cnblogs.com/fish7/p/4067063.html//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()