static boolean checkDir(File dir) {
File iniFile = new File(dir, "/info.ini"); if (!iniFile.exists() || iniFile.length() ==0) { return false; } return true; }本文共 201 字,大约阅读时间需要 1 分钟。
static boolean checkDir(File dir) {
File iniFile = new File(dir, "/info.ini"); if (!iniFile.exists() || iniFile.length() ==0) { return false; } return true; }转载于:https://blog.51cto.com/2598974/1130655