.Net普通记事本记载日志
/// <summary>
/// 记日志
/// </summary>
/// <param name="str"></param>
public void LogWrit(string str)
{
string SqlFileName = "1.txt";
string pluPath = AppDomain.CurrentDomain.BaseDirectory + "1.txt";//plu文件路径
if (File.Exists(pluPath))
{
File.Delete(pluPath);
}
using (StreamWriter sw = new StreamWriter(pluPath, false, Encoding.GetEncoding("GB2312")))
{
sw.Write(str);
sw.Close();
}
}
再牛逼的梦想,也抵不住我傻逼似的坚持!别在该奋斗的年纪,贪图安逸。 今天多学一些知识,明天开发的速度就更快一下。后天你就会变得更好。