Como: Abrir e anexar a um arquivo de log
StreamWriter e StreamReader escrever caracteres e ler caracteres de fluxos. O exemplo de código a seguir abre o arquivo de log.txt para entrada ou o cria se ele não existir e acrescenta informações de log ao final do arquivo. O exemplo, em seguida, grava o conteúdo do arquivo na saída padrão para exibição.
Como alternativa a este exemplo, você pode armazenar as informações como uma única cadeia de caracteres ou matriz de cadeia de caracteres e usar o File.WriteAllText método ou File.WriteAllLines para obter a mesma funcionalidade.
Nota
Os usuários do Visual Basic podem optar por usar os métodos e propriedades fornecidos pela Log classe ou FileSystem classe para criar ou gravar em arquivos de log.
Exemplo
using System;
using System.IO;
class DirAppend
{
public static void Main()
{
using (StreamWriter w = File.AppendText("log.txt"))
{
Log("Test1", w);
Log("Test2", w);
}
using (StreamReader r = File.OpenText("log.txt"))
{
DumpLog(r);
}
}
public static void Log(string logMessage, TextWriter w)
{
w.Write("\r\nLog Entry : ");
w.WriteLine($"{DateTime.Now.ToLongTimeString()} {DateTime.Now.ToLongDateString()}");
w.WriteLine(" :");
w.WriteLine($" :{logMessage}");
w.WriteLine ("-------------------------------");
}
public static void DumpLog(StreamReader r)
{
string line;
while ((line = r.ReadLine()) != null)
{
Console.WriteLine(line);
}
}
}
// The example creates a file named "log.txt" and writes the following lines to it,
// or appends them to the existing "log.txt" file:
// Log Entry : <current long time string> <current long date string>
// :
// :Test1
// -------------------------------
// Log Entry : <current long time string> <current long date string>
// :
// :Test2
// -------------------------------
// It then writes the contents of "log.txt" to the console.
Imports System.IO
Class DirAppend
Public Shared Sub Main()
Using w As StreamWriter = File.AppendText("log.txt")
Log("Test1", w)
Log("Test2", w)
End Using
Using r As StreamReader = File.OpenText("log.txt")
DumpLog(r)
End Using
End Sub
Public Shared Sub Log(logMessage As String, w As TextWriter)
w.Write(vbCrLf + "Log Entry : ")
w.WriteLine($"{DateTime.Now.ToLongTimeString()} {DateTime.Now.ToLongDateString()}")
w.WriteLine(" :")
w.WriteLine($" :{logMessage}")
w.WriteLine("-------------------------------")
End Sub
Public Shared Sub DumpLog(r As StreamReader)
Dim line As String
line = r.ReadLine()
While Not (line Is Nothing)
Console.WriteLine(line)
line = r.ReadLine()
End While
End Sub
End Class
' The example creates a file named "log.txt" and writes the following lines to it,
' or appends them to the existing "log.txt" file:
' Log Entry : <current long time string> <current long date string>
' :
' :Test1
' -------------------------------
' Log Entry : <current long time string> <current long date string>
' :
' :Test2
' -------------------------------
' It then writes the contents of "log.txt" to the console.
Consulte também
- StreamWriter
- StreamReader
- File.AppendText
- File.OpenText
- StreamReader.ReadLine
- Como: Enumerar diretórios e arquivos
- Como: Ler e gravar em um arquivo de dados recém-criado
- Como: Ler texto de um arquivo
- Como: Gravar texto em um arquivo
- Como: Ler caracteres de uma cadeia de caracteres
- Como: Gravar caracteres em uma cadeia de caracteres
- E/S de arquivo e fluxo