[docs]classPathCls:"""Path commands group definition. 2 total commands, 0 Subgroups, 2 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("path",core,parent)
[docs]defget(self,path_type:str)->str:"""SCPI: SYSTem:MMEMory:PATH \n Snippet: value: str = driver.system.massMemory.path.get(path_type = 'abc') \n No command help available \n :param path_type: No help available :return: path: No help available"""param=Conversions.value_to_quoted_str(path_type)response=self._core.io.query_str(f'SYSTem:MMEMory:PATH? {param}')returntrim_str_response(response)
[docs]defget_user(self)->str:"""SCPI: SYSTem:MMEMory:PATH:USER \n Snippet: value: str = driver.system.massMemory.path.get_user() \n Queries the user directory, that means the directory the R&S SMW200A stores user files on. \n :return: path_user: string """response=self._core.io.query_str('SYSTem:MMEMory:PATH:USER?')returntrim_str_response(response)