c# 建立临时文件 并写入数据

2021-02-15 03:16

阅读:548

标签:body   coding   建立   nbsp   code   iter   pfile   path   div   

                    //建立临时文件
                      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# 建立临时文件 并写入数据

标签:body   coding   建立   nbsp   code   iter   pfile   path   div   

原文地址:https://www.cnblogs.com/cxyzhangjie/p/8440623.html


评论


亲,登录后才可以留言!