0

我正在开发 ac# 应用程序。在这个表单中,我添加了 2 个按钮。那些是BrowseCreate File按钮。

现在我想做的是使用浏览按钮浏览一个位置,当单击Create file按钮时,在该位置创建一个文本文件。

4

2 回答 2

4

看一下

SaveFileDialog 类

提示用户选择保存文件的位置。

或者

FolderBrowserDialog 类

提示用户选择文件夹。

File.Create 方法

在指定路径中创建文件。

甚至

File.CreateText 方法

创建或打开用于写入 UTF-8 编码文本的文件

于 2013-08-16T05:58:04.457 回答
2

在点击事件上这样做

//if you want to overwrite the file if it already exists you can bypass this check
if (File.Exists(path))
{               
      File.Delete(path);
}

        // Create the file. 
        using (FileStream fs = File.Create(path))
        {
            Byte[] info = new UTF8Encoding(true).GetBytes("This is some text in the file.");
            // Add some information to the file.
            fs.Write(info, 0, info.Length);
        }

如果你不打算写任何东西

FileStream fs = File.Create(path);
fs.Close();  //this needs to be done

你需要阅读这个

于 2013-08-16T06:02:25.703 回答