Delete specific line from a text file?

前端 未结 10 1657
既然无缘
既然无缘 2020-11-29 11:14

I need to delete an exact line from a text file but I cannot for the life of me workout how to go about doing this.

Any suggestions or examples would be greatly appr

10条回答
  •  失恋的感觉
    2020-11-29 11:43

    One way to do it if the file is not very big is to load all the lines into an array:

    string[] lines = File.ReadAllLines("filename.txt");
    string[] newLines = RemoveUnnecessaryLine(lines);
    File.WriteAllLines("filename.txt", newLines);
    

提交回复
热议问题