我有一个文本文件,在遇到特定行后我需要在其中添加一些行。
我尝试过创建一个流对象,然后从文件中读取,直到获得搜索文本,然后通过设置其光标位置写入同一个流,但它不起作用。
有没有办法做到这一点?
以下是在文件中间附加一些文本的方法:
var sb = new StringBuilder();
using (var sr = new StreamReader("inputFileName"))
{
string line;
do
{
line = sr.ReadLine();
sb.AppendLine(line);
} while (!line.Contains("<Sim Properties>"));
sb.Append(myText);
sb.Append(sr.ReadToEnd());
}
using (var sr = new StreamWriter("outputFileName"))
{
sr.Write(sb.ToString());
}
这将myText
在包含<Sim Properties>
.
下面的代码示例演示了使用 WriteAllLines 方法将文本写入文件。在此示例中,如果文件不存在,则会创建一个文件,并向其中添加文本。
using System;
using System.IO;
class Test
{
public static void Main()
{
string path = @"c:\temp\MyTest.txt";
// This text is added only once to the file.
if (!File.Exists(path))
{
// Create a file to write to.
string[] createText = { "Hello", "And", "Welcome" };
File.WriteAllLines(path, createText);
}
// This text is always added, making the file longer over time
// if it is not deleted.
string appendText = "This is extra text" + Environment.NewLine;
File.AppendAllText(path, appendText);
// Open the file to read from.
string[] readText = File.ReadAllLines(path);
foreach (string s in readText)
{
Console.WriteLine(s);
}
}
}