시스템 모듈 구성에 대한 추가 작업
경로 정보 가져오기
다음 방법의 반환 결과는 구성 시스템 모듈의 구성에 따라 달라집니다.
// 返回配置体系根路径 Cfgs.get().getConfigHome(); // 返回项目根路径 Cfgs.get().getProjectHome(); // 返回项目模块根路径 Cfgs.get().getModuleHome(); // 返回user.dir所在路径 Cfgs.get().getUserDir(); // 返回user.home所在路径 Cfgs.get().getUserHome();
대상 파일 검색
// 在配置体系中搜索cfgs/configuration.xml文件并返回其File对象 Cfgs.get().searchFile("cfgs/configuration.xml"); // 在配置体系中搜索cfgs/configuration.properties文件并返回其绝对路径 Cfgs.get().searchPath("cfgs/configuration.properties");