您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“如何用XCOPY實現(xiàn)指定日期并且用EXCLUDE排除指定文件”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“如何用XCOPY實現(xiàn)指定日期并且用EXCLUDE排除指定文件”吧!
1.cmd到xcopyTime.bat所在目錄,執(zhí)行命令xcopyTime sourceFolder DestinationFolder dateTime
2.EXCLUDE.txt是排除的對象,不復制其中羅列的文件或文件夾
例子:
F:\bat>xcopyTime E:\workspace F:\website\ 06-30-2010
EXCLUDE.txt內(nèi)容,在下面的線里面
------------------------------
.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實現(xiàn)指定日期并且用EXCLUDE排除指定文件”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學習!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。