我看到有两种方法可以获取File
列表,并通过gradle将文件与正则表达式匹配,如下所示:Filter file name with regex。有没有办法为匹配目录做类似的事情?,即通过gradle在特定文件夹中是否存在具有正则表达式的目录?如果目录与正则表达式匹配,请获取该目录名称以在System.properties
中设置build.gradle
?
答案 0 :(得分:3)
file('the/containing/directory').eachDirMatch(~/<your regexp here>/) {
// set the system property with it.name
}