Systen,IO

Posted 惜取少年时,只为不流泪

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Systen,IO相关的知识,希望对你有一定的参考价值。

        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的主要内容,如果未能解决你的问题,请参考以下文章