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

C#对文本进行简单的写入

时间:2017-08-13 00:09:04      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:str   c#   class   span   stream   txt   none   info   exist   

 

 string path = System.IO.Directory.GetCurrentDirectory();//相对路径
 FileInfo fi = new FileInfo(path + @"\Data\unity.txt");
  ////如果该文件存在需要删除重新写入
  if (fi.Exists)
 {
   fi.Delete(); 
  }
  StreamWriter sw = new StreamWriter(path + @"\Data\StreamingAssets\unity.txt");
   sw.WriteLine(需要写入的内容方法);
   sw.Close();
   MessageBox.Show("写入成功! ^-^ ", "TaoHu", MessageBoxButtons.OK, MessageBoxIcon.None);
 

 

C#对文本进行简单的写入

标签:str   c#   class   span   stream   txt   none   info   exist   

原文地址:http://www.cnblogs.com/htwzl/p/7351824.html

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