I want to combine 3 strings and get the complete file path. But when i check for the file existance, it is failing. Please suggest a way to do this
set "path=D:\Build" set "config=x86" set "type=Release" set "fileName=abc.dll" set "filePath=%path%\%config%\%type%\%fileName%" if exist filePath ( :copy file code)