[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[文件操作] 批处理命令xcopy无法读取exclude文件?

命令:
  1. xcopy "C:\Documents and Settings\cn0zgong\My Documents\Document\Source" /e /d G:\移动硬盘 G:\移动硬盘 /exclude:"%CD%\exclude.txt"
复制代码
exclude.txt的文件内容为:
qq
msn



可是运行结果为:
无法读取文件:"C:\Documents and Settings\cn0zgong\My Documents\Document\移动硬盘\批处理\同步exclude.txt"
可文件命名在当前目录

迷惑中。。。

回复 1# seangg


exclude后面的文件名不要加双引号
  1. @echo off
  2. cd /d "%~dp0"
  3. > ignore.txt echo qq
  4. >>ignore.txt echo msn
  5. xcopy /e /y /exclude:ignore.txt "C:\Documents and Settings\cn0zgong\My Documents\Document\Source" "G:\移动硬盘\"
复制代码
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

返回列表