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

C#写入日志信息到文件中

时间:2016-11-05 14:47:33      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:new   margin   init   stream   directory   cto   dir   orm   程序   

为了在服务器上运行程序及时的跟踪出错的地方,可以在必要的地方加入写日志的程序。

            string folder = string.Format(@"D:\\{0}\\{1}", DateTime.Now.ToString("yyyy"), DateTime.Now.ToString("MM"));
            //判断文件夹是否存在
            if (!Directory.Exists(folder))
            {
                Directory.CreateDirectory(folder);
            }
            try
            {
                File.WriteAllText(string.Format("{0}\\{1}.txt", folder, DateTime.Now.ToString("yyyyMMdd")), "测试信息向文件中覆盖写入信息", Encoding.UTF8);

                //在将文本写入文件前,处理文本行
                //StreamWriter一个参数默认覆盖
                //StreamWriter第二个参数为false覆盖现有文件,为true则把文本追加到文件末尾
                using (StreamWriter file = new StreamWriter(string.Format("{0}\\{1}.txt", folder, DateTime.Now.ToString("dd")), true))
                {
                    file.WriteLine("测试信息向文件中追加");//直接追加文件末尾,不换行
                    file.WriteLine("---------------------------------");
                    file.WriteLine();// 直接追加文件末尾,换行
                    file.Close();
                }
            }
            catch (Exception)
            {
                throw;
            }

C#删除指定文件夹下所有文件而保留文件夹

DirectoryInfo dir = new DirectoryInfo(path);
            if (dir.Exists)
            {
                DirectoryInfo[] childs = dir.GetDirectories();
                foreach (DirectoryInfo child in childs)
                {
                    child.Delete(true);
                }
                dir.Delete(true);
            }

 

C#写入日志信息到文件中

标签:new   margin   init   stream   directory   cto   dir   orm   程序   

原文地址:http://www.cnblogs.com/kongxiaoshuang/p/6032730.html

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