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

C#文件读写(txt 简单方式)

时间:2017-09-12 16:09:06      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:c#   line   bsp   直接   读写   写入   test   new   txt   

1.文件写入

// 路径,写入内容

System.IO.File.WriteAllText(@".\File.txt", string.Empty);

可更换相应的方法

 

2.文件读入

// 路径 返回 string

System.IO.File.ReadAllText(@".\File.txt");

可更换相应方法

 

3.用流读写

// 路径,是否覆盖原内容

using (System.IO.StreamWriter file = new System.IO.StreamWriter(@"C:\test.txt", true))
{
      file.Write(line);//直接追加文件末尾,不换行
      file.WriteLine(line);// 直接追加文件末尾,换行 
}

C#文件读写(txt 简单方式)

标签:c#   line   bsp   直接   读写   写入   test   new   txt   

原文地址:http://www.cnblogs.com/amwuau/p/7509776.html

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