我将使用以下项目:https://github.com/scottwis/OpenFileOrFolderDialog

但是,有一个问题:它使用了GetOpenFileName函数和OPENFILENAME结构。OPENFILENAME有一个名为templateID的成员,它是对话模板的标识符。项目包含res1。Rc文件和模板化对话框init。但是我不知道如何将这个文件附加到我的c#项目。

是否有更好的方法使用OpenFileDialog来选择文件夹?


当前回答

听起来像你只是在FolderBrowserDialog。

其他回答

听起来像你只是在FolderBrowserDialog。

基本上你需要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

奇怪的是,这么多的答案/投票,但没有人添加以下代码作为答案:

using (var opnDlg = new OpenFileDialog()) //ANY dialog
{ 
    //opnDlg.Filter = "Png Files (*.png)|*.png";
    //opnDlg.Filter = "Excel Files (*.xls, *.xlsx)|*.xls;*.xlsx|CSV Files (*.csv)|*.csv"

    if (opnDlg.ShowDialog() == DialogResult.OK)
    {
        //opnDlg.SelectedPath -- your result
    }
}

这应该是最明显和直接的方法

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;
   }

}

考虑到OP的问题,西蒙·穆里耶给出的答案是最好的答案。它不涉及NuGET包,所以将来选择文件夹方法不会有任何依赖问题。

如果您遇到与“…在c# 7.3”中不可用,只需将<LangVersion>8.0</LangVersion>添加到您的.csproj(在Visual Studio中测试构建和运行时不会产生任何错误)

如果您无法更改项目语言,则只需替换所有者即可 ??= Application.Current.MainWindow 与

所有者=所有者??Application.Current.MainWindow