在c#应用程序中的选定位置创建txt文件

本文关键字:位置 创建 txt 文件 定位 应用程序 | 更新日期: 2023-09-27 18:27:49

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

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

在c#应用程序中的选定位置创建txt文件

看看

SaveFileDialog类

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

FolderBrowserDialog类

提示用户选择文件夹。

文件.创建方法

在指定的路径中创建文件。

甚至

File.CreateText方法

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

点击事件时,像这样做

//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

你需要阅读这篇文章。