[VB.NET]使用StreamWriter把文字輸出到檔案

使用StreamWriter把文字輸出到檔案

今天客戶要求要做一個將發生的錯誤寫到一個檔案裡,爬一下文有相關的寫法,還蠻簡潔的,而且他會自己接續寫入資訊到檔案。

Dim sw As System.IO.StreamWriter = System.IO.File.AppendText("檔案路徑")
sw.WriteLine("要寫出的內容")
sw.Flush()
sw.Close()
sw.Dispose()