<< Click to Display Table of Contents >>
IsFileExist
파일의 존재 여부를 가져옵니다.
Prototype
bool IsFileExist(string FullPath)
Parameters
FullPath |
파일 경로 |
Example
function isFileExist(){
var rep = OZCreator.GetBuiltInObject(OZBuiltInObject.REPOSITORY);
var login = rep.Login("admin","admin");
if (login) {
var fullpath = "/";
var result = rep.IsFileExist(fullpath);
_DEBUG("result="+result);
rep.Logout();
}
}