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.
57 lines
1.9 KiB
57 lines
1.9 KiB
|
|
@echo off
|
|
|
|
Rem #########################################################################
|
|
Rem 사용자 템플릿 및 사용자 정의 사전 경로를 설정합니다.
|
|
Rem
|
|
SET UserTemplatesPath=#USERTEMPLATESPATH#
|
|
SET UserCustomDicPath=#USERCUSTOMDICPATH#
|
|
SET UserCustomDicFile=%UserCustomDicPath%\#CUSTOMDICNAME#
|
|
SET UserAppTemplatesPath=%UserTemplatesPath%\#APPPATHNAME#
|
|
SET UserAppWebTemplatesPath=%UserTemplatesPath%\#APPWEBPATHNAME#
|
|
|
|
Rem #########################################################################
|
|
Rem 공용 템플릿 및 사용자 정의 사전 경로를 설정합니다.
|
|
Rem
|
|
SET CommonTemplatesPath=#COMMONTEMPLATESPATH#
|
|
SET CommonCustomDicPath=#COMMONCUSTOMDICPATH#
|
|
SET CommonCustomDicFile=%CommonCustomDicPath%\#CUSTOMDICNAME#
|
|
SET CommonAppTemplatesPath=%CommonTemplatesPath%\#APPPATHNAME#
|
|
SET CommonAppWebTemplatesPath=%CommonTemplatesPath%\#APPWEBPATHNAME#
|
|
|
|
Rem #########################################################################
|
|
Rem 사용자 홈 디렉터리에 응용 프로그램 고유의 데이터를 위한
|
|
Rem 디렉터리를 만듭니다.
|
|
Rem
|
|
|
|
call TsMkUDir "%UserTemplatesPath%"
|
|
call TsMkUDir "%UserCustomDicPath%"
|
|
call TsMkUDir "%RootDrive%\%MY_DOCUMENTS%"
|
|
|
|
Rem #########################################################################
|
|
|
|
Rem
|
|
Rem Custom.dic 파일을 사용자 디렉터리로 복사합니다.
|
|
Rem
|
|
|
|
If Exist "%UserCustomDicFile%" Goto Skip1
|
|
If Not Exist "%CommonCustomDicFile%" Goto Skip1
|
|
Copy "%CommonCustomDicFile%" "%UserCustomDicFile%" >Nul: 2>&1
|
|
:Skip1
|
|
|
|
|
|
Rem #########################################################################
|
|
|
|
Rem
|
|
Rem 템플릿을 사용자 템플릿 영역으로 복사합니다.
|
|
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
|