Groovy计数文件数与目录中的regex匹配

时间:2014-01-02 00:23:22

标签: groovy

我正在使用此代码来计算目录中以's'结尾的文件数。

            def count=0
        def p = ~/.*s/
        new File("c:\\shared").eachFileMatch(p) { file->
            println file.getName().split("\\.")[0]
            count++
        }
        print "$count"

如果有办法避免临时变量并在File类本身中使用某些方法?

由于

1 个答案:

答案 0 :(得分:7)

不是在电脑上,但你可以尝试

def count = new File("c:\\shared").listFiles()
                                  .findAll { it.name ==~ /.*s/ }
                                  .size()