求.NET MVC写入TXT并保存在本地指定路径的代码

如题 解决后再追加分,谢谢。
2024-11-16 19:37:46
推荐回答(1个)
回答(1):

string txt = textBox1.Text;//写到txt的内容
string filename = "t.txt"; //t.txt是文件名,可以带路径。
System.IO.StreamWriter sw = new System.IO.StreamWriter(filename);
sw.Write(txt);
sw.Close();