Source code for RsFsw.Implementations.System.Plugin.AppStarter.Directory

from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions
from .....Internal.Utilities import trim_str_response


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class DirectoryCls:
	"""
	| Commands in total: 1
	| Subgroups: 0
	| Direct child commands: 1
	"""

	def __init__(self, core: Core, parent):
		self._core = core
		self._cmd_group = CommandsGroup("directory", core, parent)

[docs] def set(self, working_dir: str) -> None: """ ``SYSTem:PLUGin:APPStarter:DIRectory`` \n Snippet: ``driver.system.plugin.appStarter.directory.set(working_dir = 'abc')`` \n Defines the working directory used by the selected application. """ param = Conversions.value_to_quoted_str(working_dir) self._core.io.write(f'SYSTem:PLUGin:APPStarter:DIRectory {param}')
[docs] def get(self) -> str: """ ``SYSTem:PLUGin:APPStarter:DIRectory`` \n Snippet: ``value: str = driver.system.plugin.appStarter.directory.get()`` \n Defines the working directory used by the selected application. """ response = self._core.io.query_str(f'SYSTem:PLUGin:APPStarter:DIRectory?') return trim_str_response(response)