C#将textbox的数据保存入记事本怎样才能不覆盖前面的数据

 我来答
syht2000
高粉答主

2013-10-12 · 关注我不会让你失望
知道大有可为答主
回答量:3万
采纳率:79%
帮助的人:1.4亿
展开全部
   string path = @"c:\MyTest.txt";
        // This text is added only once to the file.
        if (!File.Exists(path))
        {
            // Create a file to write to.
            //创建一个文件
            using (StreamWriter sw = File.CreateText(path))
            {
                sw.WriteLine("Hello");
                sw.WriteLine("And");
                sw.WriteLine("Welcome");
            }   
        }
        // This text is always added, making the file longer over time
        // if it is not deleted.
        //向文件追加
        using (StreamWriter sw = File.AppendText(path))
        {
            sw.WriteLine("This");
            sw.WriteLine("is Extra");
            sw.WriteLine("Text");
        }
ma教教主
2013-10-12 · 超过21用户采纳过TA的回答
知道答主
回答量:86
采纳率:0%
帮助的人:52万
展开全部
先添加 using System.IO;
using (StreamWriter sw =File.AppendText())
{
sw.WriteLine("");//第一行
}
等下一次再用这句话,就会写到第二行
appendtext 是没有就会创建的,不需要创建了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
阳光的雷咩咩
2013-10-11 · TA获得超过1.4万个赞
知道大有可为答主
回答量:2.3万
采纳率:66%
帮助的人:7771万
展开全部
new streamwriter(路径,true);
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式