72 lines
1.8 KiB
Batchfile
72 lines
1.8 KiB
Batchfile
|
|
|||
|
@echo off
|
|||
|
|
|||
|
Rem #########################################################################
|
|||
|
Rem <20><><EFBFBD><EFBFBD><EFBFBD>û<EFBFBD>ģ<EFBFBD><C4A3><EFBFBD><EFBFBD><EFBFBD>Զ<EFBFBD><D4B6><EFBFBD><EFBFBD>ǵ<EFBFBD>·<EFBFBD><C2B7>
|
|||
|
Rem
|
|||
|
SET UserTemplatesPath=#USERTEMPLATESPATH#
|
|||
|
SET UserCustomDicPath=#USERCUSTOMDICPATH#
|
|||
|
SET UserCustomDicFile=%UserCustomDicPath%\#CUSTOMDICNAME#
|
|||
|
SET UserAppTemplatesPath=%UserTemplatesPath%\#APPPATHNAME#
|
|||
|
SET UserAppWebTemplatesPath=%UserTemplatesPath%\#APPWEBPATHNAME#
|
|||
|
|
|||
|
Rem #########################################################################
|
|||
|
Rem <20><><EFBFBD>ù<EFBFBD><C3B9><EFBFBD>ģ<EFBFBD><C4A3><EFBFBD><EFBFBD><EFBFBD>Զ<EFBFBD><D4B6><EFBFBD><EFBFBD>ǵ<EFBFBD>·<EFBFBD><C2B7>
|
|||
|
Rem
|
|||
|
SET CommonTemplatesPath=#COMMONTEMPLATESPATH#
|
|||
|
SET CommonCustomDicPath=#COMMONCUSTOMDICPATH#
|
|||
|
SET CommonCustomDicFile=%CommonCustomDicPath%\#CUSTOMDICNAME#
|
|||
|
SET CommonAppTemplatesPath=%CommonTemplatesPath%\#APPPATHNAME#
|
|||
|
SET CommonAppWebTemplatesPath=%CommonTemplatesPath%\#APPWEBPATHNAME#
|
|||
|
|
|||
|
Rem #########################################################################
|
|||
|
|
|||
|
Rem
|
|||
|
Rem <20><><EFBFBD>û<EFBFBD><C3BB><EFBFBD><EFBFBD><EFBFBD>Ŀ¼<C4BF><C2BC>ΪӦ<CEAA>ó<EFBFBD><C3B3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
Rem <20><><EFBFBD><EFBFBD>Ŀ¼<C4BF><C2BC>
|
|||
|
Rem
|
|||
|
|
|||
|
call TsMkUDir "%UserTemplatesPath%"
|
|||
|
call TsMkUDir "%UserCustomDicPath%"
|
|||
|
call TsMkUDir "%RootDrive%\%MY_DOCUMENTS%"
|
|||
|
|
|||
|
Rem #########################################################################
|
|||
|
|
|||
|
Rem
|
|||
|
Rem <20><> Custom.dic <20>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD>Ƶ<EFBFBD><C6B5>û<EFBFBD><C3BB><EFBFBD>Ŀ¼
|
|||
|
Rem
|
|||
|
|
|||
|
If Exist "%UserCustomDicFile%" Goto Skip1
|
|||
|
If Not Exist "%CommonCustomDicFile%" Goto Skip1
|
|||
|
Copy "%CommonCustomDicFile%" "%UserCustomDicFile%" >Nul: 2>&1
|
|||
|
:Skip1
|
|||
|
|
|||
|
Rem #########################################################################
|
|||
|
|
|||
|
Rem
|
|||
|
Rem <20><>ģ<EFBFBD>帴<EFBFBD>Ƶ<EFBFBD><C6B5>û<EFBFBD><C3BB><EFBFBD>ģ<EFBFBD><C4A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
Rem
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
If Exist "%UserAppTemplatesPath%" Goto Skip2
|
|||
|
If Not Exist "%CommonAppTemplatesPath%" Goto Skip2
|
|||
|
xcopy "%CommonAppTemplatesPath%" "%UserAppTemplatesPath%" /E /I >Nul: 2>&1
|
|||
|
:Skip2
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
if Exist "%UserAppWebTemplatesPath%" Goto Skip3
|
|||
|
if Not Exist "%CommonAppWebTemplatesPath%" Goto Skip3
|
|||
|
xcopy "%CommonAppWebTemplatesPath%" "%UserAppWebTemplatesPath%" /E /I >Nul: 2>&1
|
|||
|
:Skip3
|