zoukankan      html  css  js  c++  java
  • c# 写txt

    public static void WriteErrorLogDataInteraction(string sLog, string titleLog)
            {
                try
                {
                    string logPath = ConfigurationSettings.AppSettings["LogPath"]; //通过配置文件记录错误日志位置
                    if (string.IsNullOrEmpty(logPath))
                    {
                        logPath = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase;//配置文件安装目录
                    }
                    DateTime dt = DateTime.Now;
                    string logfile = new StringBuilder(logPath).Append(DateTime.Now.ToString("yyyy-MM")).Append(".txt").ToString();
                    if (!System.IO.Directory.Exists(System.IO.Path.GetDirectoryName(logfile)))
                    {
                        System.IO.Directory.CreateDirectory(System.IO.Path.GetDirectoryName(logfile));
                    }
                    if (!File.Exists(logfile))
                    {
                        FileStream fs = System.IO.File.Create(logfile);
                        fs.Close();
                    }
                    using (StreamWriter sw = new StreamWriter(logfile, true))
                    {
                        sw.WriteLine(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + ":");
                        sw.WriteLine("Title: " + titleLog);
                        sw.WriteLine("Message:" + sLog);
                        sw.WriteLine();
                        sw.Close();
                    }
                }
                catch
                { }
            }

    方式二、

    string a = rea.ToString();
    
            StreamWriter bb = new StreamWriter("c:\\bbb.xml");
    
            bb.Write(a);
    
            bb.Close();
  • 相关阅读:
    XPOSED优秀模块列表 反射
    XPOSED优秀模块列表 ENABLE CALL RECORDING (三星启用通话录音)
    sp_Rename批量修改数据表的列名
    我的第一个sql server function
    js传递参数时是按照值传递的
    TreeView 绑定到深度未知的数据源
    silverlight中WCF服务定义终结点后可以方便部署
    Jquery常用方法合集,超实用
    sql 触发器 if条件判断
    如何用js判断document里的一个对象是否存在?或是是否有效
  • 原文地址:https://www.cnblogs.com/honghong75042/p/3071369.html
Copyright © 2011-2022 走看看