单击按钮时如何在c#make file.text中?

时间:2014-02-08 14:00:28

标签: c# .net winforms

这是Windows窗体应用程序的代码:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApplication6 {
public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }

    private void Form1_Load(object sender, EventArgs e)
    {
    }

    private void button1_Click(object sender, EventArgs e)
    {
    }
}
}

如何在单击按钮时创建文件file.txt

2 个答案:

答案 0 :(得分:2)

您可以在File上使用多种方法,例如File.Create。这只是在本地运行文件夹中创建或覆盖文件:

private void button1_Click(object sender, EventArgs e)
{
     if (!File.Exists("file.txt"))
     {
         File.Create("file.txt");
     }
}

答案 1 :(得分:1)

使用File.WriteAllText创建新文件的方法,将内容写入文件,然后关闭文件。如果目标文件已存在,则会被覆盖。

private void button1_Click(object sender, EventArgs e)
{
     File.WriteAllText("file.txt","your text ");
}