如何在for循环中处理路径名中的空格?

时间:2010-09-01 02:30:51

标签: batch-file

尝试使用当前脚本的路径,路径中包含空格。我似乎无法让它工作:

C:\Test Directory>dir
 Volume in drive C has no label.
 Volume Serial Number is 7486-CEE6

 Directory of C:\Test Directory

08/31/2010  07:28 PM    <DIR>          .
08/31/2010  07:28 PM    <DIR>          ..
08/31/2010  07:28 PM                20 echoit.cmd
08/31/2010  07:28 PM                94 test.cmd
               2 File(s)            114 bytes
               2 Dir(s)  344,141,197,312 bytes free

C:\Test Directory>type echoit.cmd
@echo off
echo %*

C:\Test Directory>type test.cmd
@echo off

for /f "tokens=*" %%a in ('%~dp0\echoit.cmd Hello World') do (
    echo %%a
)

C:\Test Directory>test
'C:\Test' is not recognized as an internal or external command,
operable program or batch file.

C:\Test Directory>

3 个答案:

答案 0 :(得分:2)

test.cmd更改为以下内容:

   @echo off

   for /f "tokens=*" %%a in ('"%~dp0\echoit.cmd" Hello World') do (
    echo %%a
   )

您需要在引号中设置整个命令,减去参数。当引用整个集合时,Windows命令提示符将单词集合视为单个命令,这就是您必须排除Hello World参数的原因。如果你要在引号中包含它,Windows会把它作为命令的一部分而不是作为参数。

答案 1 :(得分:0)

您是否尝试过添加引号?

for /f "tokens=*" %%a in ('"%~dp0\echoit.cmd" Hello World') do (
    echo %%a
)

答案 2 :(得分:0)

如何使用~fs0,即

C:\Test Directory>type test.cmd
@echo off

for /f "tokens=*" %%a in ('%~fs0\echoit.cmd Hello World') do (
 echo %%a
)

其中%~fsI - 将%I扩展为仅具有短名称的完整路径名