文件IO(存取.txt文件)
Posted xiaolang0
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件IO(存取.txt文件)相关的知识,希望对你有一定的参考价值。
//存文件方法
public void Save_File_Info(string Save_Path)
{
//根据路径,创建文件和数据流
FileStream FS = new FileStream(Save_Path, FileMode.Create);
StreamWriter SW = new StreamWriter(FS);
//开始写入
SW.WriteLine(“写入文件内容”);
//清空缓冲区
SW.Flush();
//关闭流
SW.Close();
FS.Close();
}
//读取文件方法
public void Read_File_Info(string Read_Path)
{
StreamReader SR = new StreamReader(Read_Path, false);
string str=“”;
if ((str = SR.ReadLine()) != null)
{
Console.WriteLine(str);
}
SR .Close();
}
注:path路径为.txt文件路径,此方法适用整行数据流的读取,可修改部分进行完善........
以上是关于文件IO(存取.txt文件)的主要内容,如果未能解决你的问题,请参考以下文章