C# File类创建读写修改文本文件
上一篇使用读写流创建和修改,读取文本文件,本篇使用File类创建,修改,读写文本文件。
1. 创建 Write
const string filename = "Test2.txt";
static void Write()
{
File.WriteAllText(filename, "Write Text by File class writeAllText Method");
}
使用WirteAllText方法,将字符写入到指定文件。
static void Write2()
{
string[] strArray = { "Line1", "Line2", "Line3" };
File.WriteAllLines(filename, strArray);
}
使用WriteAllLines方法将字符串数组的内容写入到文本文件。
2. 追加
static void Append()
{
string content = "This is a test write content by AppendAllText method!";
File.AppendAllText(filename, content);
}
使用AppendAllText方法,将字符串追加到指定文本文件上。
static void Append2()
{
string[] contents = { "The first line", "The Second line", "The Third line" };
File.AppendAllLines(filename, contents);
}
使用AppendAllLines方法将字符串数组添加到指定文本中。
3. 读取
static void Read()
{
try
{
string content = File.ReadAllText(filename);
Console.WriteLine(content);
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
使用ReadAllText方法,一次性将文本文件中字符串全部读取。
static void Read2()
{
string[] lines = File.ReadAllLines(filename);
foreach (var line in lines)
{
Console.WriteLine(line);
}
for (int i = 0; i < lines.Length; i++)
{
Console.WriteLine($"{i} {lines[i] }");
}
}
使用ReadAllLines方法读取文本文件中的全部数据,以字符串数组存储每行数据,可以从字符串数组中按照行取值。