为什么这个批处理复制不了文件
发布网友
发布时间:2024-10-19 07:02
我来回答
共3个回答
热心网友
时间:2024-10-30 09:29
路径有空格加上双引号
@echo off
copy "c:\reports\207.xml" "D:\Program Files\exlive\gserver\tomcat-6.0.26\webapps\reports\WEB-INF\web.xml" /y
copy "c:\webvhc\207.xml" "D:\Program Files\exlive\gserver\tomcat-6.0.26\webapps\webvhc\WEB-INF\web.xml" /y
copy "c:\gserver\207.xml" "D:\Program Files\exlive\gserver\conf.xml" /y
另外,为了更加通用一些,可以使用系统变量
比如系统program files目录可以用%programfiles%代替
更多系统变量直接用set命令查看。
热心网友
时间:2024-10-30 09:28
为有空格的路径加上英文双引号——
copy c:\reports\207.xml "D:\Program Files\exlive\gserver\tomcat-6.0.26\webapps\reports\WEB-INF\web.xml" /y
热心网友
时间:2024-10-30 09:26
路径有空格,
@echo off
copy c:\reports\207.xml "D:\Program Files\exlive\gserver\tomcat-6.0.26\webapps\reports\WEB-INF\web.xml" /y
copy c:\webvhc\207.xml "D:\Program Files\exlive\gserver\tomcat-6.0.26\webapps\webvhc\WEB-INF\web.xml" /y
copy c:\gserver\207.xml "D:\Program Files\exlive\gserver\conf.xml" /y