我正在使用下面的代码将一些文本写入文件。而不是使用AppendText,有没有办法预先添加写入文本文件的新数据?因此,不是将最新的条目写入底部,而是将其写入文本文档的顶部。
Public filePath As String = "c:\path\log.txt"
Public w As StreamWriter
w = File.AppendText(filePath)
w.WriteLine('Blah Blah')
w.Flush()
w.Close()
答案 0 :(得分:0)
对于大多数常见的文件系统,没有。您必须复制该文件。
答案 1 :(得分:0)
你可以这样添加它。
Dim txtList As New List(Of String)
txtList.Add("top line of text")
Using sr As New StreamReader("c:\path\log.txt")
While Not sr.EndOfStream()
txtList.Add(sr.ReadLine)
End While
End Using
Using sw As New StreamWriter("c:\path\log.txt")
For Each line As String In txtList
sw.WriteLine(line)
Next
End Using