How can I pass on a specific global list variable to the following Get and Set functions?
Assume there is a @{Files} list with multiple xxxx.txt files. Assume @{Files}[0] has dinosaur.txt
Get the File Version
[Arguments] @{Files}[??] # Not sure about this
Run Keyword If File is present
... ${time} = OperatingSystem.Get Modified Time @{Files}[]
... ${dateonly} = Split String ${time} ${SPACE}
... ${Version} = @{dateonly}[0]
ELSE
... ${Version} = MISSING
[Return] ${Version}
Set a dinosaur file version test case
${Version} = Get the File Version @{Files}[0] # Is this right ???
Set test variable ${Version}