vote up 3 vote down star

I've got a very small standalone vb.net app that gets run automatically. Every now and then it hits an error condition that I want to log and then keep processing. But, this is far too minor a thing to store in the system's main log - I really just want to append a line to a text file.

What's the least stress way to append a line of text to a file (and have it create the file if it's not there) under .net?

flag

56% accept rate

5 Answers

vote up 13 vote down check

IO.File.AppendAllText(@"Y:\our\File\Name.here", "your log message here")

link|flag
That is pretty Q & D – cciotti Nov 7 '08 at 19:34
In what way is it dirty? It's certainly simple - but it does exactly what's required (assuming UTF-8 is okay). – Jon Skeet Nov 7 '08 at 19:36
w00t! This answer put me in the 5-digit club (just beat you there, Jon) – Joel Coehoorn Nov 7 '08 at 19:39
I'm only 700 behind :D – FlySwat Nov 7 '08 at 19:39
closer to 600 now- going quick – Joel Coehoorn Nov 7 '08 at 19:42
show 1 more comment
vote up 3 vote down

In VB.NET, My.Computer.FileSystem.WriteAllText will do the trick. If you don't like the My namespace, System.IO.File.AppendAllText works as well.

link|flag
vote up 2 vote down

This is in C#, but should be trivial to change to VB:

    void logMessage(string message)
    {
        string logFileName = "log.file";

        File.AppendAllText(logFileName,message);
    }

Edited because Joel's solution was much simpler than mine =)

link|flag
vote up 1 vote down

This MSDN article, How to: Write Text to a File should do it.

link|flag
vote up 1 vote down
Private Const LOG_FILE As String = "C:\Your\Log.file"

Private Sub AppendMessageToLog(ByVal message As String)
    If Not File.Exists(LOG_FILE) Then
        File.Create(LOG_FILE)
    End If

    Using writer As StreamWriter = File.AppendText(LOG_FILE)
        writer.WriteLine(message)
    End Using
End Sub
link|flag

Your Answer

Get an OpenID
or

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