源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

XCOPY的高级使用:指定日期并且用EXCLUDE排除指定文件

  • 时间:2021-07-30 12:55 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:XCOPY的高级使用:指定日期并且用EXCLUDE排除指定文件
1.cmd到xcopyTime.bat所在目录,执行命令xcopyTime sourceFolder DestinationFolder dateTime 2.EXCLUDE.txt是排除的对象,不复制其中罗列的文件或文件夹 例子: F:\bat>xcopyTime E:\workspace F:\website\ 06-30-2010 EXCLUDE.txt内容,在下面的线里面 ------------------------------ .classpath .class .log ------------------------------ [img]http://files.jb51.net/file_images/article/201404/2014412231744407.gif[/img]
[u]复制代码[/u] 代码如下:
@echo off rem xcopy2.BAT transfers all files in all subdirectories of rem the source drive or directory (%1) to the destination rem drive or directory (%2) rem lastModifyTime (%3) xcopy %1 %2 /s /d:%3 /exclude:EXCLUDE.txt /y if errorlevel 4 goto lowmemory if errorlevel 2 goto abort if errorlevel 0 goto exit :lowmemory echo Insufficient memory to copy files or echo invalid drive or command-line syntax. goto exit :abort echo You pressed CTRL+C to end the copy operation. goto exit :exit ================================================================== .classpath .class .log
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部