def get_system_plugin_names():
"""
Get the names of all plugins at the system scope.
As this is a static method, you can call the directly on IDASettings:
import ida_settings
print( ida_settings.IDASettings.get_system_plugin_names() )
rtype: Sequence[str]
"""
return QtCore.QSettings(QtCore.QSettings.SystemScope,
IDA_SETTINGS_ORGANIZATION,
IDA_SETTINGS_APPLICATION).childGroups()[:]
评论列表
文章目录