move C:\%USERNAME%\Desktop\TZClock C:\%USERNAME%\Start Menu\Programs\TZClock
我不断获取系统找不到指定的路径。但是我可以导航到它。
MOVE
仅适用于文件吗? 最佳答案
在Windows XP下,它将是:
move "c:\documents and settings\%USERNAME%\desktop\TZClock" "C:\documents and settings\%USERNAME%\Start Menu\Programs\TZClock"
在Windows 7上,请执行以下操作(尽管我现在无法对此进行测试):
move "c:\users\%USERNAME%\desktop\TZClock" "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\TZClock"
关于windows - 命令提示符: Why do I get “cannot find the path specified” when I move a folder (with contents) from the desktop to a new directory?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5606398/