<< Click to Display Table of Contents >>

GetCheckOutFolder

아이템의 체크아웃 폴더를 가져옵니다.

Prototype

string GetCheckOutFolder(string ItemFullPath)

Parameters

ItemFullPath

아이템 전체 경로

Example

function getCheckOutFolder(){

   var rep = OZCreator.GetBuiltInObject(OZBuiltInObject.REPOSITORY);

   var login = rep.Login("admin","admin");

   if (login) {

       var itemFullPath = "/parameter_test.odi";

       var result = rep.GetCheckOutFolder(itemFullPath);

       _DEBUG("result="+result);

       rep.Logout();

   }

}