ファイル操作

using System.IO;

ファイル上書き
File.WriteAllText(@”C:\Myfolder\test.txt”, “Good morning!”);
追記
File.AppendAllText(@”C:\Myfolder\test.txt”, “Good morning!”);

読み込み
if (!File.Exists(path))
{
string readText = File.ReadAllText(@”C:\Myfolder\test.txt”);}

}

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です