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

C#创建文件夹,往里追字符串。

时间:2015-07-15 19:01:46      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:

  /// <summary>写文本日志</summary>
        /// <param name="StrMessage">日志消息</param>
        /// <param name="LogPath">默认指定文件路径</param>
        /// <param name="LogName">日志文本名(不含后缀/默认为当日时间)</param>
        /// <returns>写入成功</returns>

        static public bool WriteFile(String StrMessage, String LogPath = null, String LogName = null)
        {
            if (!string.IsNullOrEmpty(LogPath)) LogFilePath = LogPath;
            LogFileName = (LogName ?? DateTime.Now.ToString("yyyyMMdd")) + @".txt";
            var FullPath = LogFilePath + LogFileName;
            try
            {
                if (!Directory.Exists(LogFilePath)) Directory.CreateDirectory(LogFilePath);
                File.AppendAllText(FullPath, StrMessage, Encoding.UTF8);
            }
            catch (Exception ex)
            {
                //LogHelper.WriteLogEx(typeof(TextFileMethod), ex);
                return false;
            }
            return true;
        }

  这他妈的 失忆了,啥都不会了、标记一下。

C#创建文件夹,往里追字符串。

标签:

原文地址:http://www.cnblogs.com/NicolasLen/p/4649148.html

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