在 Groovy 中递归列出与特定文件类型匹配的所有文件
我试图递归地列出与 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这应该可以解决您的问题:
eachFileRecurse
采用枚举 FileType 指定您只对文件感兴趣。通过过滤文件名可以轻松解决其余问题。可能值得一提的是,eachFileRecurse 通常会递归文件和文件夹,而eachDirRecurse 仅查找文件夹。This should solve your problem:
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 thateachFileRecurse
normally recurses over both files and folders whileeachDirRecurse
only finds folders.groovy 版本 2.4.7 :
您还可以添加过滤器,例如
groovy version 2.4.7 :
you can also add filter like
用
eachFileRecurse
替换eachDirRecurse
,它应该可以工作。replace
eachDirRecurse
byeachFileRecurse
and it should work.