在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
XCOPY是COPY的扩展,可以把指定的目录连文件和目录结构一并拷贝,但不能拷贝系统文件;使用时源盘符、源目标路径名、源文件名至少指定一个;选用/S时对源目录下及其子目录下的所有文件进行COPY。除非指定/E参数,否则/S不会拷贝空目录,若不指定/S参数,则XCOPY只拷贝源目录本身的文件,而不涉及其下的子目录;选用/V参数时,对的拷贝的扇区都进行较验,但速度会降低。 我们不可数典忘祖,该学习的还是要学习,不该忘记的还是不能忘记,尤其是DOS批处理命令,在开发软件或项目的时候,都离不开这些基本的原始的命令。本文,我们来学习Xcopy的参数及实例 一、Xcopy参数介绍 命令格式:XCOPY source [destination] 一堆可选的参数 二、Xcopy命令实例介绍1、本机复制文件或文件夹的实例
命令解释:将D盘的UpdateFiles文件夹中包含的所有东西,全部复制到E盘的123文件夹内;/s /e /y 参数说明:在复制文件的同时也复制空目录或子目录,如果目标路径已经有相同文件了,使用覆盖方式而不进行提示。 2、在局域网中的应用实例
命令解释:将192.168.0.168这台计算机的名称为UpdateFiles的文件夹内的所有东西,全部复制到本机的e:\123 文件夹;参数说明:在复制文件的同时也复制空目录或子目录,如果目标路径已经有相同文件了,使用覆盖方式而不进行提示。 3、结合/d标签,实现只复制比目标文件新的文件假如现在c:\a文件夹下的所有文件和d:\a下的文件相同(修改日期及内容) c:\a下的一个文件被别人修改了或者添加了一个文件! @echo off echo y|xcopy c:\a /d /e /r /k d:\a\ pause 经测试如果目标文件与源文件相同则不复制。确实一定程度了减少了对硬盘的读写。 4、移动A目录的所有文件到B目录移动A目录的所有文件到B目录,且保留A目录的目录结构;如果A下面有子目录,则在B中也创建相同目录,并把对应目录的文件移动到B的相同目录结构位置;(不移动系统文件和隐藏文件) @echo off rem 复制指定目录的目录结构到目标目录,并移动的文件到目标目录,且保留目录结构(空目录也复制),不保留系统文件和隐藏文件 set ObjPath=\\192.168.1.186\Temp Files\技术部\BPD\sourceFiles\ZOFUND set DestPath=E:\EastFax\FFPsourceFiles\sourceFiles\ZOFUND set DestExt=* xcopy /e /c /y "%ObjPath%\%DestExt%" "%DestPath%" del /a /s /q /f "%ObjPath%\" 5、xcopy 排除文件拷贝@echo off ::xcopy /y /s /e /I /exclude:uncopy.txt E:\NetWorkCMDA\CMDA0418\Portals\0 E:\Mu\Portals\0 ::xcopy /y /s /e /I /exclude:uncopy.txt C:\Docume~1\wangchao\桌面\MyTest C:\Docume~1\wangchao\桌面\aaa echo 返回默认情况下应用程序存储数据的位置=%APPDATA% echo 返回当前目录字符串=%CD% echo 返回计算机的名称=%COMPUTERNAME% echo 返回命令行解释器可执行程序的准确路径=%COMSPEC% echo 返回当前登录的用户的名称=%USERNAME% echo 返回包含用户帐户的域的名称=%USERDOMAIN% echo 返回当前用户的配置文件的位置=%USERPROFILE% set myExist=%windir%\TestUncopy set myCommand=%windir%\TestUncopy&echo TestUncopy if not exist %myExist% mkdir %myCommand% set myExist1=%windir%\TestUncopy\a set myCommand1=%windir%\TestUncopy\a&echo TestUncopy\a if not exist %myExist1% mkdir %myCommand1% set myExist2=%windir%\TestUncopy\aa set myCommand2=%windir%\TestUncopy\aa&echo TestUncopy\aa if not exist %myExist2% mkdir %myCommand2% set myExist3=%windir%\TestUncopy\a\b set myCommand3=%windir%\TestUncopy\a\b&echo TestUncopy\a\b if not exist %myExist3% mkdir %myCommand3% set myExist4=%windir%\TestUncopySource set myCommand4=%windir%\TestUncopySource&echo TestUncopySource if not exist %myExist4% mkdir %myCommand4% set myExist5=%windir%\TestUncopy\aaa set myCommand5=%windir%\TestUncopy\aaa&echo TestUncopy\aaa if not exist %myExist5% mkdir %myCommand5% set copyFile=%windir%\system\COMMDLG.DLL if not exist %myExist1%\m1.dll copy %copyFile% %myExist1% /y if not exist %myExist2%\m2.dll copy %copyFile% %myExist2% /y if not exist %myExist3%\m3.dll copy %copyFile% %myExist3% /y if not exist %myExist5%\m5.dll copy %copyFile% %myExist5% /y if not exist %myExist1%\m1.dll ren %myExist1%\COMMDLG.DLL m1.dll if not exist %myExist2%\m2.dll ren %myExist2%\COMMDLG.DLL m2.dll if not exist %myExist3%\m3.dll ren %myExist3%\COMMDLG.DLL m3.dll if not exist %myExist5%\m5.dll ren %myExist5%\COMMDLG.DLL m5.dll if not exist %myExist5%\txt1.exe copy %windir%\system32\notepad.exe %myExist5% /y if not exist %myExist5%\txt1.exe ren %myExist5%\notepad.exe txt1.exe if not exist %myExist5%\txt2.exe copy %windir%\system32\notepad.exe %myExist5% /y if not exist %myExist5%\txt2.exe ren %myExist5%\notepad.exe txt2.exe if not exist %myExist5%\txt3.exe copy %windir%\system32\notepad.exe %myExist5% /y if not exist %myExist5%\txt3.exe ren %myExist5%\notepad.exe txt3.exe set OutFile=uncopy.txt ::MyDir=\aa\ 排除的文件夹 ::MySubDir=\a\b\ 排除的子文件夹 ::MyFile=m3.dll 排除的文件 ::set MyFile1=.exe 排除的类型文件 set MyDir=\aa\ set MySubDir=\a\b\ set MyFile=m3.dll set MyFile1=.exe echo %MyDir% >uncopy.txt echo %MySubDir% >>uncopy.txt echo %MyFile% >>uncopy.txt echo %MyFile1% >>uncopy.txt xcopy /y /s /e /I /exclude:uncopy.txt %windir%\TestUncopy %windir%\TestUncopySource ::if exist %windir%\TestUncopy del %windir%\TestUncopy /s /q&rd %windir%\TestUncopy /s /q &echo del_rd %windir%\TestUncopy ::if exist %windir%\TestUncopySource del %windir%\TestUncopySource /s /q&rd %windir%\TestUncopySource /s /q &echo del_rd %windir%\TestUncopySource ::del uncopy.txt start %myExist% start %myExist4% echo 是否删除(Y/N) set /p shuru= ::if %shuru:~0,1%==y (echo %shuru:~0,1%&goto del) ::if %shuru:~0,1%==Y (echo %shuru:~0,1%&goto del) ::if %shuru:~0,1%==n (echo %shuru:~0,1%&goto End) ::if %shuru:~0,1%==N (echo %shuru:~0,1%&goto End) if %shuru:~0,1%==y (cls&goto del) if %shuru:~0,1%==Y (cls&goto del) if %shuru:~0,1%==n (cls&goto End) if %shuru:~0,1%==N (cls&goto End) pause :del if exist %windir%\TestUncopy del %windir%\TestUncopy /s /q&rd %windir%\TestUncopy /s /q &echo del_rd %windir%\TestUncopy if exist %windir%\TestUncopySource del %windir%\TestUncopySource /s /q&rd %windir%\TestUncopySource /s /q &echo del_rd %windir%\TestUncopySource if exist uncopy.txt del uncopy.txt :End echo.& ::换行 echo 操作已经完成 timeout /t 3 /nobreak cls echo 是否重新调用(Y/N)--Y:调用 N:退出 set /p shuru= if %shuru:~0,1%==y (cls&goto MyCall) if %shuru:~0,1%==Y (cls&goto MyCall) if %shuru:~0,1%==n (cls&goto EndExit) if %shuru:~0,1%==N (cls&goto EndExit) :EndExit exit :MyCall uncopy.bat pause 6、xcopy与EXCLUDE参数的用法示例一:例如,我要将"WebAppBuytoy"目录备份一份到"WebAppBuytoy_bak",但要排除其下面的 步骤一,新建一个文本文件叫"EXCLUDE.txt",内容如下:
步骤二,命令(包含子目录,不提示覆盖):
示例二: 发布.net的Web项目批处理 deploy_web.cmd xcopy G:\WebSites\BuytoySolutionV2\WebAppBuytoy web /EXCLUDE:web_exclude.txt /i /e /y @rem 将排除的*.css文件补回 xcopy G:\WebSites\BuytoySolutionV2\WebAppBuytoy\App_Themes web\App_Themes /i /e /y @pause web_exclude.txt:
示例三: 发布.net的Web项目批处理,但排除商品图片目录,因为它太大且不常更新, 重复使用上面那个排除文件“web_exclude.txt”,再加一个排除商品图片的排除文件 deploy_web_排除商品图片.cmd xcopy G:\WebSites\BuytoySolutionV2\WebAppBuytoy web /EXCLUDE:web_exclude.txt+web_exclude_prodImages.txt /i /e /y @rem 将排除的*.css文件补回 xcopy G:\WebSites\BuytoySolutionV2\WebAppBuytoy\App_Themes web\App_Themes /i /e /y @pause web_exclude_prodImages.txt
到此这篇关于Xcopy命令参数使用介绍的文章就介绍到这了,更多相关Xcopy内容请搜索极客世界以前的文章或继续浏览下面的相关文章希望大家以后多多支持极客世界! |
请发表评论