I am trying to run block if a directory exists in my jenkins workspace and the pipeline step "fileExists: Verify file exists" in workspace doesn't seem to work correctly.
I'm using Jenkins v 1.642 and Pipeline v 2.1. and trying to have a condition like
if ( fileExists 'test1' ) {
//Some block
}
What are the other alternatives I have within pipeline?
You need to use brackets when using the
fileExists
step in anif
condition or assign the returned value to a variableUsing variable:
Using brackets: