我将使用以下项目:https://github.com/scottwis/OpenFileOrFolderDialog
但是,有一个问题:它使用了GetOpenFileName函数和OPENFILENAME结构。OPENFILENAME有一个名为templateID的成员,它是对话模板的标识符。项目包含res1。Rc文件和模板化对话框init。但是我不知道如何将这个文件附加到我的c#项目。
是否有更好的方法使用OpenFileDialog来选择文件夹?
我将使用以下项目:https://github.com/scottwis/OpenFileOrFolderDialog
但是,有一个问题:它使用了GetOpenFileName函数和OPENFILENAME结构。OPENFILENAME有一个名为templateID的成员,它是对话模板的标识符。项目包含res1。Rc文件和模板化对话框init。但是我不知道如何将这个文件附加到我的c#项目。
是否有更好的方法使用OpenFileDialog来选择文件夹?
当前回答
基本上你需要FolderBrowserDialog类:
提示用户选择一个文件夹。这个类不能被继承。
例子:
using(var fbd = new FolderBrowserDialog())
{
DialogResult result = fbd.ShowDialog();
if (result == DialogResult.OK && !string.IsNullOrWhiteSpace(fbd.SelectedPath))
{
string[] files = Directory.GetFiles(fbd.SelectedPath);
System.Windows.Forms.MessageBox.Show("Files found: " + files.Length.ToString(), "Message");
}
}
如果你在WPF中工作,你必须添加对System.Windows.Forms的引用。
你还必须添加使用系统。目录类的IO
其他回答
我是c#的新手,刚刚看到这个帖子。
对于那些刚接触这门语言的人来说,这可能也会感兴趣。
更改FolderBrowserDialog的设计
这应该是最明显和直接的方法
using (var dialog = new System.Windows.Forms.FolderBrowserDialog())
{
System.Windows.Forms.DialogResult result = dialog.ShowDialog();
if(result == System.Windows.Forms.DialogResult.OK)
{
selectedFolder = dialog.SelectedPath;
}
}
下面是另一种解决方案,它将所有源代码放在一个简单的ZIP文件中。
它为OpenFileDialog提供了额外的窗口标志,使其像windows 7+文件夹选择对话框一样工作。
根据该网站的说法,它是公共领域的:“没有许可证可以让你自由地使用代码,做你想做的事情。”
文章:.NET win7风格的文件夹选择对话框(http://www.lyquidity.com/devblog/?p=136) 源代码:http://s3downloads.lyquidity.com/FolderSelectDialog/FolderSelectDialog.zip
Archive.org的链接:
文章:https://web.archive.org/web/20180823181552/http: / / www.lyquidity.com/devblog/ ? p = 136 源代码:https://web.archive.org/web/20180823181632/http://s3downloads.lyquidity.com/FolderSelectDialog/FolderSelectDialog.zip
考虑到OP的问题,西蒙·穆里耶给出的答案是最好的答案。它不涉及NuGET包,所以将来选择文件夹方法不会有任何依赖问题。
如果您遇到与“…在c# 7.3”中不可用,只需将<LangVersion>8.0</LangVersion>添加到您的.csproj(在Visual Studio中测试构建和运行时不会产生任何错误)
如果您无法更改项目语言,则只需替换所有者即可 ??= Application.Current.MainWindow 与
所有者=所有者??Application.Current.MainWindow
基本上你需要FolderBrowserDialog类:
提示用户选择一个文件夹。这个类不能被继承。
例子:
using(var fbd = new FolderBrowserDialog())
{
DialogResult result = fbd.ShowDialog();
if (result == DialogResult.OK && !string.IsNullOrWhiteSpace(fbd.SelectedPath))
{
string[] files = Directory.GetFiles(fbd.SelectedPath);
System.Windows.Forms.MessageBox.Show("Files found: " + files.Length.ToString(), "Message");
}
}
如果你在WPF中工作,你必须添加对System.Windows.Forms的引用。
你还必须添加使用系统。目录类的IO