Jenkins groovy 递归得到文件夹下的文件列表
程序员文章站
2022-06-22 18:11:55
...
Jenkins pipeline groovy不能使用eachFileRecurse方法,所以只能使用shell帮忙了。/path和*.txt为可替换参数。
files=sh(returnStdout: true, script: 'find /path -name "*.txt"')