我想更改命令:
copy "D:\Folder\File.txt" "C:\Folder\File.txt"
到:
copy "%current path%\File.txt" "C:\Folder\File.txt"
有没有办法输入这样的颜色?
答案 0 :(得分:2)
copy "%cd%\some.file" "c:\there\some.file"
或
copy "%~dp0some.file" "c:\there\some.file"
它们是不同的 - %cd%
是当前的可执行目录,而%~dp0
是bat文件在未调用SHIFT命令的情况下的位置。此外,%~dp0
无法从命令中使用行没有脚本文件。
答案 1 :(得分:1)
尝试copy ".\File.txt" "C:\Folder\File.txt"