在命令提示符下执行复制命令时出错

时间:2017-03-21 09:33:23

标签: batch-file cmd

在命令提示符中执行以下命令时,

copy C:\Users\ADMIN\Downloads\*.* C:\Users\ADMIN\Downloads\SELF STUDY\DOCS\Completed

我面临以下错误

Syntax of the command is incorrect

你能告诉我出错的地方吗?

2 个答案:

答案 0 :(得分:2)

尝试:

select toName, lastwrite, messageStatus 
from chat 
where ( toName, lastwrite) in ( 
    SELECT toName, MAX(lastwrite)
    FROM chat
    GROUP BY toName
  )

打印错误,因为目标文件夹和复制命令中的空格将其作为两个参数.Quotes应该解决这个问题。

答案 1 :(得分:2)

copy "C:\Users\ADMIN\Downloads\*.*"  "C:\Users\ADMIN\Downloads\SELF STUDY\DOCS\Completed"

您应该在文件名周围添加双引号。