递归查找目录中文本文件的数量[重复]

Posted

技术标签:

【中文标题】递归查找目录中文本文件的数量[重复]【英文标题】:Find the count of text files in a directory recursively [duplicate] 【发布时间】:2013-10-10 05:13:55 【问题描述】:

我正在尝试编写一些代码来计算目录及其子目录中的所有文本文件。我试过下面的代码:

private void button1_Click_1(object sender, EventArgs e)

    FolderBrowserDialog folderBrowserDialog1 = new FolderBrowserDialog();
    DialogResult result = folderBrowserDialog1.ShowDialog();
    if (result == DialogResult.OK)
    
        string[] files = Directory.GetFiles(folderBrowserDialog1.SelectedPath);
        MessageBox.Show("Files found: " + files.Length.ToString(), "Message");
    

【问题讨论】:

***.com/a/27584/181771 【参考方案1】:

要在文件夹及其子目录中搜索TXT文件,请使用:

string[] files = Directory.GetFiles(folderBrowserDialog1.SelectedPath, "*.txt", SearchOption.AllDirectories);

【讨论】:

谢谢.. 现在我可以过滤文本文件了..【参考方案2】:

无需遍历目录。已经有一个 .NET 工具可以执行此操作。

要获取具有特定扩展名的文件列表,包括子目录,请使用,

var files = Directory.EnumerateFiles(srcDir, "*.txt", SearchOption.AllDirectories);

【讨论】:

【参考方案3】:
FolderBrowserDialog folderBrowserDialog1 = new FolderBrowserDialog();
DialogResult result = folderBrowserDialog1.ShowDialog();
if (result == DialogResult.OK)

    int fileCount = GetFileCount(folderBrowserDialog1.SelectedPath);        

从父目录和所有子目录递归获取文本文件计数,

private int GetFileCount(string s)

    return Directory.GetFiles(s, "*.txt").Count() + Directory.GetDirectories(s).Select(GetFileCount).Sum();

【讨论】:

很好的递归小函数,但GetFiles() 已经有第三个重载允许搜索子目录。 我刚刚从其他答案中注意到。 :)

以上是关于递归查找目录中文本文件的数量[重复]的主要内容,如果未能解决你的问题,请参考以下文章

递归查找文件中的文本 (PowerShell)

在所有子目录中的文件中查找和替换文本[重复]

批处理-循环文本文件[重复]

Python实现对文件夹内文本文件递归查找

在 pdf 文件中查找特定文本并使用文本打印文件名和行

[javaSE] IO流(递归查找指定文件)