[C#]将数据存入硬盘文件(txt)

程序中已经得到一个string(也可以是byte[],需要进行编码),希望将它存入d:\1.txt 中

 

using System.IO;

 

代码
   
   
string path = @" d:\1.txt " ; // 这是地址
string Text = " 这里是要写入的内容 " ;
FileStream fs
= new FileStream(path, FileMode.Create);
StreamWriter sw
= new StreamWriter(fs, Encoding.Unicode);
sw.Write(Text);
sw.Close();
fs.Close();

 

你可能感兴趣的:(txt)