C# 的隨手筆記 1 - 簡單存檔文字檔2 - 在TXT檔增加文字or建立TXT檔案

簡單來說就是一個 存 txt  系列 

這次建立的 function在複雜一點有機會先觀看上一次的文章

主要是要確認這個檔案是不是存在
1. 存在就直接在文章加入String
2. 不存在就建立一個新檔案

麻~C++ 這段比較簡單就是了晚一點再來寫個C++的好了

 

 public void Append_String_To_File(string path_Result_out, string Write_String)
        {
            if (!File.Exists(path_Result_out))
            {
                using (StreamWriter sw = File.CreateText(path_Result_out))
                {
                    sw.Write(Write_String);
                }

            }
            else
            {
                using (StreamWriter sw = File.AppendText(path_Result_out))
                {
                    sw.Write(Write_String);
                }

            }
        }

 

if (!File.Exists(path_Result_out))

是拿來判斷是不是有這檔案

StreamWriter sw = File.CreateText(path_Result_out)

沒有就建立檔案

using (StreamWriter sw = File.AppendText(path_Result_out))

有就直接加入句子

 

老樣子簡單測試一下 建立一個按鈕測試

 

 

 

 

 

 

 

 

 

 

 

 

原本文件是有寫:測試存檔1

 

 

 

 

 

 

 

 

測試結果:

 

 

 

 

 

 

 

如果要是有換行效果的話

 

 

 

 

 

 

 

 

 

 

 

 

 

結果: