You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
klhis/pack_release.bat

34 lines
738 B

@echo off
::
::设定文件名
set vZipFileName=release_%date:~0,4%_%date:~5,2%%date:~8,2%_%time:~0,2%%time:~3,2%
::设定7zip目录
set v7ZipDir="C:\Program Files\7-Zip\"
::创建目录
::md .\WEB-INF\conf
echo
::复制已编译的文件
::xcopy %vProjectDir%\WEB-INF\classes\com .\WEB-INF\classes\com /e
echo
::删除配置文件
del .\WEB-INF\conf\wat-config.xml
del .\WEB-INF\conf\wat-config_template.txt
echo 删除配置文件完成
::输出打包文件清单
::echo WEB-INF\> 7ziplist.txt
::echo %vDirName%.txt>> 7ziplist.txt
::打包
%v7ZipDir%\7z.exe a -tzip %vZipFileName%.zip @pack_release_list.txt -mx=9 -sdel
::删除打包列表文件
del pack_release_list.txt
::删除本打包语句
del pack_release.bat
@echo on