我正在使用此代码来计算目录中以's'结尾的文件数。
def count=0
def p = ~/.*s/
new File("c:\\shared").eachFileMatch(p) { file->
println file.getName().split("\\.")[0]
count++
}
print "$count"
如果有办法避免临时变量并在File类本身中使用某些方法?
由于
答案 0 :(得分:7)
不是在电脑上,但你可以尝试
def count = new File("c:\\shared").listFiles()
.findAll { it.name ==~ /.*s/ }
.size()