当我运行以下代码时:
xcopy /y c:\Users\etudiant002\Desktop\sethc.exe d:\Windows\System32
pause
应该将桌面上的文件复制到System32
并覆盖现有文件。但是我得到以下输出。
Specification of the reader (or hard-drive idk) isn't valid
0 file(s) copied
Press any key to continue...
我为什么要得到这个,如何解决呢?
答案 0 :(得分:0)
我无法重现您的问题,但请尝试以下操作:
xcopy /y c:\Users\etudiant002\Desktop\sethc.exe d:\Windows\System32\
通过在末尾加反斜杠来说明目标位置是目录,因此毫无疑问它是目录还是文件。