岁月无痕

岁月-人生
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

append content to txt file.

Posted on 2009-08-10 10:20  岁月无痕  阅读(163)  评论(0)    收藏  举报

 public static void WriteLogs(string log)
        {
            string filePath = HttpContext.Current.Server.MapPath("~\\BllLogs.log");
            List<string> logList = new List<string>();
            if (File.Exists(filePath))
                logList.AddRange(File.ReadAllLines(filePath));
            logList.Add(log);
            File.WriteAllLines(filePath, logList.ToArray());

        }