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

发布于 2024-09-17 17:53:07 字数 161 浏览 2 评论 0原文

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

I am trying to recursively list all files that match a particular file type in Groovy. This example almost does it. However, it does not list the files in the root folder. Is there a way to modify this to list files in the root folder? Or, is there a different way to do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

萌吟 2024-09-24 17:53:07

这应该可以解决您的问题:

import static groovy.io.FileType.FILES

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

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

This should solve your problem:

import static groovy.io.FileType.FILES

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

eachFileRecurse takes an enum FileType that specifies that you are only interested in files. The rest of the problem is easily solved by filtering on the name of the file. Might be worth mentioning that eachFileRecurse normally recurses over both files and folders while eachDirRecurse only finds folders.

星軌x 2024-09-24 17:53:07

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
}

groovy version 2.4.7 :

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

you can also add filter like

new File(parentPath).traverse(type: groovy.io.FileType.FILES, nameFilter: ~/patternRegex/) { it ->
    println it
}
蒗幽 2024-09-24 17:53:07
// Define closure
def result

findTxtFileClos = {

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

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

println result
// Define closure
def result

findTxtFileClos = {

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

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

println result
野味少女 2024-09-24 17:53:07

eachFileRecurse 替换 eachDirRecurse ,它应该可以工作。

replace eachDirRecurse by eachFileRecurse and it should work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文