static boolean checkDir(File dir) {
       
        File iniFile = new File(dir, "/info.ini");
       
        if (!iniFile.exists() || iniFile.length() ==0) {
            return false;
        }
       
        return true;
    }