欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Jenkins groovy 递归得到文件夹下的文件列表

程序员文章站 2022-06-22 18:11:55
...

Jenkins pipeline groovy不能使用eachFileRecurse方法,所以只能使用shell帮忙了。/path和*.txt为可替换参数。

 

files=sh(returnStdout: true, script: 'find /path -name "*.txt"')