您好,登錄后才能下訂單哦!
本篇內容主要講解“如何用XCOPY實現指定日期并且用EXCLUDE排除指定文件”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“如何用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
------------------------------
代碼如下:
@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
到此,相信大家對“如何用XCOPY實現指定日期并且用EXCLUDE排除指定文件”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。