我下面有一段代码,其中包含report.html,并使用下面几行标识
build.getWorkspace().child("report_${BUILD_NUMBER}/report.html")
根据上一行内容,还有更多的HTML文件称为report1.html和report2.html,我只能解析report.html,但我只想标识所有以“ report”开头的html文件。
任何输入...
答案 0 :(得分:0)
build.getWorkspace()
返回hudson.FilePath
对象,因此您可以检查文档中的所有方法
https://javadoc.jenkins-ci.org/hudson/FilePath.html
这应该有效:
build.getWorkspace().list("report_${BUILD_NUMBER}/report*.html")