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

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

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


当前回答

我是c#的新手,刚刚看到这个帖子。

对于那些刚接触这门语言的人来说,这可能也会感兴趣。

更改FolderBrowserDialog的设计

其他回答

有一个使用OpenFileDialog的解决方案,其中ValidateNames和CheckFileExists都被设置为false, FileName被赋予一个模拟值来指示一个目录被选中。

我说黑客,因为它是困惑的用户如何选择一个文件夹。它们需要在所需的文件夹中,然后只需按下打开,而文件名显示“文件夹选择”。

这是基于选择文件或文件夹从同一对话框由丹尼斯斯坦科夫斯基。

OpenFileDialog folderBrowser = new OpenFileDialog();
// Set validate names and check file exists to false otherwise windows will
// not let you select "Folder Selection."
folderBrowser.ValidateNames = false;
folderBrowser.CheckFileExists = false;
folderBrowser.CheckPathExists = true;
// Always default to Folder Selection.
folderBrowser.FileName = "Folder Selection.";
if (folderBrowser.ShowDialog() == DialogResult.OK)
{
    string folderPath = Path.GetDirectoryName(folderBrowser.FileName);
    // ...
}

听起来像你只是在FolderBrowserDialog。

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

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

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

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

我是c#的新手,刚刚看到这个帖子。

对于那些刚接触这门语言的人来说,这可能也会感兴趣。

更改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