#190 각 모듈의 class파일에 recompileCache() method 추가하고 admin모듈에서 모든 모듈의 recompileCache() method를 호출하게 하여 깔끔한 캐시파일 재정리가 가능하도록 기능 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2664 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-10-02 06:51:33 +00:00
parent 2b8fca8654
commit 6647883063
34 changed files with 256 additions and 2 deletions

View file

@ -117,6 +117,14 @@
@rmdir($path);
}
/**
* @biref 지정된 디렉토리를 제외한 모든 파일을 삭제
**/
function removeFilesInDir($path) {
FileHandler::removedir($path);
FileHandler::makeDir($path);
}
/**
* @brief byte단위의 파일크기를 적절하게 변환해서 return
**/