好的,我已经创建了测试文件夹和文件以使用 cmd 命令:
C:.
|-------test
| \---testa
| \---testb
| test1.txt
| test2.txt
|
|-------test2
我的问题是我无法使以下命令起作用:
C:\test\testa\testb>move test1.txt,test2.txt ..\..\..\test2
它将输出The syntax of the command is incorrect
。在 中move /?
,语法是:
MOVE [/Y | /-Y] [drive:][path]filename1[,...] destination
我相信我的语法是正确的(?)。Google 帮不了我。我知道这个命令的一些“替代方法”。我想知道我做错了什么,导致我的语法不正确。
答案1
答案2
C:\test\testa\testb>move test?.txt ..\..\test2
C:\test\testa\testb\test1.txt
C:\test\testa\testb\test2.txt
2 Datei(en) verschoben.
您可能希望使用通配符来指定要移动的文件。逗号分隔在这里也不起作用。