from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
from ....Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class StateCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("state", core, parent)
[docs]
def set(self, filename: str) -> None:
"""
``MMEMory:CLEar:STATe`` \n
Snippet: ``driver.massMemory.clear.state.set(filename = 'abc')`` \n
This command deletes an instrument configuration file.
:param filename: String containing the path and name of the file to delete. The string may or may not contain the file's extension.
"""
param = Conversions.value_to_quoted_str(filename)
self._core.io.write_with_opc(f'MMEMory:CLEar:STATe 1, {param}')