1. 程式人生 > >C#通過流寫入一行資料到檔案的程式碼

C#通過流寫入一行資料到檔案的程式碼

把開發過程中比較常用的內容備份一下,下面的資料是關於C#通過流寫入一行資料到檔案的內容。

using System;
using System.IO;

public class WriteFileStuff {

public static void Main() {
       FileStream fs = new FileStream("c:\tmp\WriteFileStuff.txt", FileMode.OpenOrCreate, FileAccess.Write);			
       StreamWriter sw = new StreamWriter(fs);
       try {
		sw.WriteLine("Howdy World.");
	} finally {
		if(sw != null) { sw.Close(); }
	}
}
}