其他分享
首页 > 其他分享> > 以文件流的形式写入到文本中

以文件流的形式写入到文本中

作者:互联网

  string str = textBox1.Text;
            string path = @"D:\TEXT.text";
            if (!File.Exists( path ))
            {
                File.Create(path);
            }

            //【1】创建文件流
            FileStream fs = new FileStream(path, FileMode.Append);

            //【2】创建写入器
            StreamWriter sw = new StreamWriter(fs);
            
            //【3】写入文本
            sw.Write(str);

            //【4】关闭写入器
            sw.Close();

            //【5】关闭文件流
            fs.Close();

标签:文件,fs,FileStream,sw,写入,new,path,文本
来源: https://www.cnblogs.com/L-love-Z/p/16387131.html