码迷,mamicode.com
首页 > 其他好文 > 详细

Systen,IO

时间:2018-01-13 01:23:17      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:stream   writer   directory   htm   rect   void   text   highlight   tor   

        private void CreateHtml(string sPath, string txt)
        {
            string currPath = @"C:\MyCodeHelper" + sPath;
            FileInfo fi = new FileInfo(currPath);
            var di = fi.Directory;
            if (!di.Exists)
                di.Create();


            using (StreamWriter s = File.CreateText(currPath))
            {
                s.Write(txt);
            }
        }

  

Systen,IO

标签:stream   writer   directory   htm   rect   void   text   highlight   tor   

原文地址:https://www.cnblogs.com/0to9/p/8278101.html

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