vote up 0 vote down star

I'm trying to use a batch file to help setup a build project. As part of that process I need to copy a lot of files from a temporary directory: %temp%\wcu to a new directory in the %programfiles% directory.

I am using the following command:

xcopy %temp%\wcu\dotnetframework\*.* %programfiles%\"Microsoft SDKs\Windows\v6.0A\Bootstrapper\Packages\DotNetFx35SP1" /S

Of course the problem is that %programfiles% equates to "C:\Program Files" with a space and so xcopy throws a wobbly.

Any ideas on how to get around this?

flag

2 Answers

vote up 2 vote down check

use quotes

xcopy "%temp%\wcu\dotnetframework\*.*" "%programfiles%\Microsoft SDKs\Windows\v6.0A\Bootstrapper\Packages\DotNetFx35SP1" /S
link|flag
Actually this one seems to work, which surprised me as I would have thought that the quote marks would have overridden the % sign. – ChrisBD Oct 19 at 9:47
vote up 0 vote down

"Use quotes", like Shay Erlichmen said, but remember: inside batch files, your environment variables should be preceded by an extra % sign:

xcopy "%%temp%\wcu\dotnetframework\*.*" "%%programfiles%\Microsoft SDKs\Windows\v6.0A\Bootstrapper\Packages\DotNetFx35SP1" /S
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.