选择文件夹中的html文件

本文关键字:html 文件 文件夹 选择 | 更新日期: 2023-09-27 18:02:37

使用"folderBrowserDialog1"可以只选择文件夹中的HTML文件。

我的代码是这样的:
private void btnBrowse_Click(object sender, EventArgs e)
{
   DialogResult result = folderBrowserDialog1.ShowDialog();
   if (result == DialogResult.OK)
    {
       string[] files = Directory.GetFiles(folderBrowserDialog1.SelectedPath);
       MessageBox.Show("Files found: " + files.Length.ToString(), "Message");
    }
 }

选择文件夹中的html文件

使用:DirectoryInfo。GetFiles方法(String)

返回当前目录中与给定目录匹配的文件列表搜索模式。

string[] files = Directory.GetFiles("*.html");

或者如果您只希望html文件可供选择,您可以使用:

OpenFileDialog

folderBrowserDialog1.Filter = "*.html | *.htm";