-1

I am using the following code:

for %%i in ("C:\Users\bvino_000\Documents\Visual Studio 2010\Projects\RapidLoadToolV2\RapidLoadToolV2\bin\Debug\RapidLoadToolV2.exe") do start "" /b "%%i"

But although using double quotes, it is taking path upto "C:\Users\bvino_000\Documents\Visual" and showing error. If i change folder name, then the command works properly. But i cant do that Plzz help

4

2 回答 2

3

尝试这个:

start "" /b "C:\Users\bvino_000\Documents\Visual Studio 2010\Projects\RapidLoadToolV2\RapidLoadToolV2\bin\Debug\RapidLoadToolV2.exe"
于 2013-07-06T07:12:14.473 回答
0

对我来说非常愉快。

我怀疑我的编辑 - 旨在显示传统的突出显示 - 纠正了这个问题,并且 OP...\Visual在一个物理行和Studio...下一个物理行上都有。整个带引号的字符串应该在同一行,但是在第一个引号之前和第二个之后直接有换行符是可以接受的,这样带引号的字符串本身就在一行左括号必须出现在与 相同的物理行上,而右括号必须出现在与 相同的物理行INDO,要调用的可执行文件也必须如此(或左括号开始一个块)。在某些情况下,可以使用换行符( ^) 来继续行,但它们的使用很少而且很敏感。

%%i将获得一组报价,因此可能不需要重新报价。

于 2013-07-06T13:36:52.863 回答