1

スペースを含むディレクトリまたはファイル名の存在を確認する方法

@echo off
if not exist "C:\"Documents and Settings"\box\putty\file"
( 
echo hello
)
pause

エラー:

'and' is not recognized as an internal or external command,
operable program or batch file.
hello
Press any key to continue . . .
4

1 に答える 1

4

他の引用符を取り除きます。パスは 1 組の引用符で囲まれています ( "")

@echo off
if not exist "C:\Documents and Settings\box\putty\file" ( 
echo hello
)
pause

の間にスペースがあることを確認してください" (

于 2013-01-27T22:32:29.070 に答える