tfstfsbuildxamlbuild

TFS check if file exists in build directory


Is there a way to check if a specific .xml file exists in build directory when TFS build runs?

I'm trying to get a Boolean result true/false based on the result found/not found

I tried creating a variable that would store this result (I'm guessing that is the way to do it). However I get an error when trying to use it. enter image description here


Solution

  • Found the solution. I added a new variable "dcMatchedFile" - which is a IEnumerable type. Use this dcMatchedFile as "Result" option for FindMatchingFiles" item (see images below)

    enter image description here

    enter image description here

    Then you can simply use "If" statement to check Any().