Hello,
I have a problem: how can I delete a line from a text file in C#?
|
1
|
|||||||
|
|
|
Read the file, remove the line in memory and put the contents back to the file (overwriting). If the file is large you might want to read it line for line, and creating a temp file, later replacing the original one. |
||
|
|
|
|
I agree with John Saunders, this isn't really C# specific. However, to answer your question: you basically need to rewrite the file. There are two ways you can do this.
That means you have to know that you've got enough memory though. An alternative:
|
||
|
|
|
|
For large files I'd to something like this
|
||
|
|
|
|
I'd very simply:
|
||
|
|