我正在开发 ac# 应用程序。在这个表单中,我添加了 2 个按钮。那些是Browse
和Create File
按钮。
现在我想做的是使用浏览按钮浏览一个位置,当单击Create file
按钮时,在该位置创建一个文本文件。
看一下
提示用户选择保存文件的位置。
或者
提示用户选择文件夹。
在指定路径中创建文件。
甚至
创建或打开用于写入 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
你需要阅读这个。