(self)
| 17 | return os.path.join(os.path.dirname(current_path), relative_path) |
| 18 | |
| 19 | def get_version_list(self): |
| 20 | configs_path = self.configs_path |
| 21 | version_list = os.listdir(configs_path) |
| 22 | versions_list = [int(file.split('_')[1]) for file in version_list if file.startswith('address_')] |
| 23 | return versions_list |
| 24 | |
| 25 | def is_wechatEx_process(self, cmdline): |
| 26 | process_name = "WeChatAppEx" |