vote up 1 vote down star
1

Hello,

I have a problem: how can I delete a line from a text file in C#?

flag
You delete a line from a file in C# the same way you would with any other language. Your question has nothing to do with C#. – John Saunders Mar 21 at 7:21
He/she means how to delete it programmatically I guess. – splattne Mar 21 at 7:25
@John Saunders: Is it that hard to understand the OP wants to delete a line from a text file using C#? How is that not specific? Let's be a little more welcoming to the newbies. – Andrew May 16 at 23:22

4 Answers

vote up 3 vote down check

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.

link|flag
vote up 3 vote down

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.

  • Read the whole file into memory (e.g. with File.ReadAllLines)
  • Remove the offending line (in this case it's probably easiest to convert the string array into a List<string> then remove the line)
  • Write all the rest of the lines back (e.g. with File.WriteAllLines) - potentially convert the List<string> into a string array again using ToArray

That means you have to know that you've got enough memory though. An alternative:

  • Open both the input file and a new output file (as a TextReader/TextWriter, e.g. with File.OpenText and File.CreateText)
  • Read a line (TextReader.ReadLine) - if you don't want to delete it, write it to the output file (TextWriter.WriteLine)
  • When you've read all the lines, close both the reader and the writer (if you use using statements for both, this will happen automatically)
  • If you want to replace the input with the output, delete the input file and then move the output file into place.
link|flag
vote up 1 vote down

For large files I'd to something like this

string tempFile = Path.GetTempFileName();

using(var sr = new StreamReader("file.txt"))
{
    using(var sw = new StreamWriter(tempFile))
    {
        string line;

        while((line = sr.ReadLine()) != null)
        {
             if(line != "removeme")
                 sw.WriteLine(line);
        }
    }
}

File.Delete("file.txt");
File.Move(tempFile, "file.txt");
link|flag
vote up 0 vote down

I'd very simply:

  • Open the file for read/write
  • Read/seek through it until the start of the line you want to delete
  • Set the write pointer to the current read pointer
  • Read through to the end of the line we're deleting and skip the newline delimiters (counting the number of characters as we go, we'll call it nline)
  • Read byte-by-byte and write each byte to the file
  • When finished truncate the file to (orig_length - nline).
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.