I have a properties file where I'd like to define a file path as a variable and then reference it. This is causing a file not found exception:
test.folder=C:/code/
file={test.folder}File.csv
But this works:
file=C:/code/File.csv
What am I doing wrong?