这看起来很简单,也许我只是忽略了适当的国旗,但是我如何在一个命令中,将一个文件从一个目录复制到另一个目录,并在目标目录中重命名它呢?这是我的命令:
if exist "bin\development\whee.config.example"
if not exist "TestConnectionExternal\bin\Debug\whee.config"
xcopy "bin\development\whee.config.example"
"TestConnectionExternal\bin\Debug\whee.config"
它每次都会提示我以下内容:
< p > TestConnectionExternal \ bin \调试\哟。配置指定文件名 或目标上的目录名(F =文件,D =目录)?< / p >
我想压制这个提示;答案总是F
。