在Groovy中递归列出与特定文件类型匹配的所有文件

时间:2010-09-07 19:48:54

标签: recursion groovy matching

我试图以递归方式列出与Groovy中特定文件类型匹配的所有文件。 This example几乎可以做到。但是,它不会列出根文件夹中的文件。有没有办法修改它以列出根文件夹中的文件?或者,有不同的方法吗?

4 个答案:

答案 0 :(得分:81)

这可以解决您的问题:

import static groovy.io.FileType.FILES

new File('.').eachFileRecurse(FILES) {
    if(it.name.endsWith('.groovy')) {
        println it
    }
}

eachFileRecurse采用枚举FileType,指定您只对文件感兴趣。通过过滤文件名可以轻松解决问题的其余部分。可能值得一提的是eachFileRecurse通常会对文件和文件夹进行递归,而eachDirRecurse只能查找文件夹。

答案 1 :(得分:14)

groovy版本2.4.7:

new File(pathToFolder).traverse(type: groovy.io.FileType.FILES) { it ->
    println it
}

你也可以添加像

这样的过滤器
new File(parentPath).traverse(type: groovy.io.FileType.FILES, nameFilter: ~/patternRegex/) { it ->
    println it
}

答案 2 :(得分:4)

eachDirRecurse替换为eachFileRecurse,它应该有效。

答案 3 :(得分:4)

// Define closure
def result

findTxtFileClos = {

        it.eachDir(findTxtFileClos);
        it.eachFileMatch(~/.*.txt/) {file ->
                result += "${file.absolutePath}\n"
        }
    }

// Apply closure
findTxtFileClos(new File("."))

println result