I want to concat 2 variables (see example) without this –> ” <–
Now:
set upvar="update/"
echo %upvar%%1
Output: “update/””example.txt”
With this output, I cannot make my copy-commands – so how can i concat these variables without this ” sign?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Batch files don’t require quotation marks around strings. So, you can simply change the first line to:
Here’s a link that has some useful tips about string manipulation in batch files.