close
中翻葡 {
StreamWriter sw = new StreamWriter(fs);
sw.Close();// 封閉串流
}
文章標籤
C#
Stream
文字
檔案
C# Stream 讀/寫文字檔案
資料來曆:http://blog.xuite.net/autosun/study/32576568-%5BC%...
// 豎立檔案串流(@ 可作廢跳脫字元 escape sequence)
StreamWriter sw = new StreamWriter(@"C:\secret_plan.txt");
sw.WriteLine("write something");// 寫入文字
sw.Close();// 封閉串流
// 建立檔案串流(@ 可勾銷跳脫字元 escape sequence)
StreamReader sr = new StreamReader(@"C:\secret_plan.txt");
while (!sr.EndOfStream)// 每次讀取一行,直到檔尾
{
string line = sr.ReadLine();// 讀取文字到 line 變數
}
sr.Close();// 封閉串流
//建立紀錄檔
public static void logFile(String StrFileName 翻譯公司 String StrData)
sw.WriteLine(StrData);// 寫入文字
本文出自: http://jashliao.pixnet.net/blog/post/206148181-c%23-stream-%E8%AE%80-%E5%AF%AB%E6%96%87%E5%AD%97%E6%有關翻譯的問題歡迎諮詢天成翻譯社
sw.WriteLine(StrData);// 寫入文字
FileStream fs = new FileStream(StrFileName, FileMode.Append);本文出自: http://jashliao.pixnet.net/blog/post/206148181-c%23-stream-%E8%AE%80-%E5%AF%AB%E6%96%87%E5%AD%97%E6%有關翻譯的問題歡迎諮詢天成翻譯社
文章標籤
全站熱搜
留言列表