c# 建立临时文件 并写入数据
2021-02-15 03:16
标签:body coding 建立 nbsp code iter pfile path div c# 建立临时文件 并写入数据 标签:body coding 建立 nbsp code iter pfile path div 原文地址:https://www.cnblogs.com/cxyzhangjie/p/8440623.html //建立临时文件
string tempFile = Path.GetTempFileName();
string ls_fileNeme = System.IO.Path.ChangeExtension(ls_file, ".rep");
File.Move(ls_file, ls_fileNeme);//修改文件扩展名
using (FileStream fs = new FileStream(ls_fileNeme, FileMode.Open))
{
StreamWriter sw = new StreamWriter(fs, Encoding.Unicode);
sw.WriteLine("what are you doing");
sw.Flush();
sw.Close();
}
上一篇:C# Winform继承窗体打开设计器卡死的一例解决方法
下一篇:c#连接不同数据