I'm wanting to using system.groups.loadFromFile() but system.groups seem to be missing from my installation (8.1.32).
In the script console of Ignition Designer:
>>> import system.groups
Traceback (most recent call last):
File "<input>", line 1, in <module>
ImportError: No module named groups
>>> import system
>>> import system.util
>>> dir(system)
['__class__', '__delattr__', '__dict__', '__doc__', '__ensure_finalizer__',
'__findattr_ex__', '__finditem__', '__format__', '__getattribute__', '__hash__',
'__init__', '__name__', '__new__', '__reduce__', '__reduce_ex__', '__repr__',
'__setattr__', '__setitem__', '__str__', '__subclasshook__', 'alarm', 'alert', 'clear',
'dataset', 'date', 'db', 'device', 'dict', 'dnp3', 'file', 'getDict', 'getName', 'gui',
'math', 'name', 'nav', 'net', 'opc', 'print', 'project', 'report', 'security', 'serial',
'setDict', 'setName', 'sfc', 'system', 'tag', 'toString', 'user', 'util', 'vision']
How do I get system.groups?