标签: windows batch-file
我有一个批处理文件,其中包含同一父文件夹中的另一个文件夹。我想通过这样做将该文件夹复制到新位置:
set src = "testing" set dest = "%APPDATA%\test" xcopy %src% %dest% /-y
[parent folder] ├─testing │ └─files1... └─bat.bat
然而,这不起作用,任何想法为什么?
PS:它说Invalid number of parameters。
Invalid number of parameters