Lines Matching refs:os
37 import os
57 _CONFIG_DIR = os.path.join(
58 os.path.expanduser('~'), '.config', 'asuite', 'aidegen')
59 _CONFIG_FILE_PATH = os.path.join(_CONFIG_DIR, _DEFAULT_CONFIG_FILE)
65 _ENABLE_DEBUG_DIR = os.path.join(_CONFIG_DIR, _ENABLE_DEBUG_CONFIG_DIR)
68 DEBUG_ENABLED_FILE_PATH = os.path.join(_ENABLE_DEBUG_DIR,
108 real_version = os.path.realpath(preferred_version)
130 if os.path.exists(self._CONFIG_FILE_PATH):
155 if not os.path.exists(self._CONFIG_DIR):
156 os.makedirs(self._CONFIG_DIR)
164 _dir = os.path.join(self._ENABLE_DEBUG_DIR, dir_name)
165 if not os.path.exists(_dir):
166 os.makedirs(_dir)
175 _file = os.path.join(self._ENABLE_DEBUG_DIR, constant.ANDROID_MANIFEST)
176 if not os.path.exists(_file) or os.stat(_file).st_size == 0:
247 if os.path.isfile(idea_path):
265 if not os.path.isfile(script_path):
267 script_dir = os.path.dirname(script_path)
268 if not os.path.isdir(script_dir):
270 lib_path = os.path.join(os.path.dirname(script_dir), _DIR_LIB)
271 return not os.path.isdir(lib_path)
316 self.idea_file = os.path.join(config_dir, self._PROPERTIES_FILE)
337 if not os.path.exists(self.idea_file):