Jenkins pipeline 获取指定路径下的文件列表
转自:获取Jenkinsfile(Groovy)中给定文件夹中的文件名列表node {// ... check out code, whateverfinal foundFiles = findFiles(glob: 'dockerfiles/**/*')// do things with FileWrapper[]}另一种选择是掏空并捕获标准:node {// ... check out cod
·
转自:获取Jenkinsfile(Groovy)中给定文件夹中的文件名列表
node {
// ... check out code, whatever
final foundFiles = findFiles(glob: 'dockerfiles/**/*')
// do things with FileWrapper[]
}
另一种选择是掏空并捕获标准:
node {
// ... check out code, whatever
final foundFiles = sh(script: 'ls -1 dockerfiles', returnStdout: true).split()
// Do stuff with filenames
}
更多推荐
已为社区贡献9条内容
所有评论(0)