I am trying to get the list of file names from the build artifacts using jenkins rest api.
This URL http://your.jenkins.server/job/your.job/lastStableBuild/artifact/relativePath
would download the artifact. Is it possible to get the names of the files contained in the artifact without downloading it using jenkins api?
Suppose,the build artifact contains around 5 text files with names ending with .config
Is it possible to retrieve only the file names ending with .config
using jenkins API?