Delete specific line from a text file?

前端 未结 10 1653
既然无缘
既然无缘 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:35

    You can actually use C# generics for this to make it real easy:

            var file = new List(System.IO.File.ReadAllLines("C:\\path"));
            file.RemoveAt(12);
            File.WriteAllLines("C:\\path", file.ToArray());
    

提交回复
热议问题