set SourceSCMPasswd=abc
set HATCONTESTING=yes
for /f %%a in ('dir /AD /b') do VssConverter.exe analyze %%a\settings.xml & move VSSAnalysisReport.xml %%a & move usermap.xml %%a
I know that it does the following commands: 1) Run VssConverter.exe analyze on %%a\settings.xml 2) Move VSSAnalysisReport.xml to %%a 3) Move usermap.xml to %%a
The problem is that when a folder in the directory has a space in its name, like AMEX Mailer for example, the variable %%a only contains AMEX but excludes the second part. How do I make it include the whole name?
help forhas all answers for you – wmz Jul 25 '12 at 20:32