public static string SetSaveFilePath(string filterType= "所有文件|*.*",string fileName="我的文件",string defaultExt=".txt")
{
SaveFileDialog dialog = new SaveFileDialog();
dialog.Filter = filterType; //设置文件类型
dialog.FileName = fileName; //设置默认文件名
dialog.DefaultExt = defaultExt; //设置默认格式(可以不设)
dialog.AddExtension = true; //设置自动在文件名中添加扩展名
if (dialog.ShowDialog() == DialogResult.OK)
{
return dialog.FileName;
}
return "";
}
相关文章
- 08-14windows API实现用户选择文件路径的对话框
- 08-14windows目录选择 文件选择 文件保存对话框
- 08-14python 编辑文件时路径问题解决方法:文件或者目录不存在、文件编辑后无法保存等(以编辑xml文件为例)
- 08-14python 将文件夹中的图片路径保存到txt文件中
- 08-14winform NPOI excel 导出并选择保存文件路径
- 08-14WPF 选择电脑文件显示路径,弹出资源管理器,打开文件
- 08-14WPF应用App.Config文件的保存路径
- 08-14jupyter notebook保存文件默认路径更改方法汇总(亲测可以)
- 08-14delphi 选择文件夹目录保存
- 08-14Winform打开文件夹、修改路径、保存数据为txt