C# 最簡單的 讀取和寫入檔案 方式 示範程式碼

直接上程式碼:
string testText = "\n\nRuyut\n\n測試\n文字"; //測試換行會被正確輸出

//只有檔名沒有路徑時會在專案的 \bin\Debug 裡面
//若是 .net Core 會多一層資料夾,例如 \bin\Debug\net5.0
string fileName = "test.txt";

// 將所有文字寫入檔案
File.WriteAllText(fileName, testText);

// 顯示輸出檔案的完整路徑
string fileFullPath = Path.GetFullPath(fileName);
Console.WriteLine(fileFullPath);

// 讀取檔案所有文字
string readAllText = File.ReadAllText(fileName);
Console.WriteLine(readAllText);
輸出:


留言