I'm not familiar with windows batch script. So, please help me. I want to concat two path using batch file.
I tried :
set mypath=%cd%
@echo %mypath%
unzip -o %mypath%+"\\xpi\\test.xpi" -d %mypath%+"\\Debug\\"
But, not working.
So, how to concat two path?
%mypath%, just use%CD%immediately...