MCPcopy Create free account
hub / github.com/Vector35/debugger / working_directory

Method working_directory

api/python/debuggercontroller.py:1135–1146  ·  view source on GitHub ↗

The path of the target. (read/write) This can be set before launching the target to configure a working directory. Be default, it is the path of the binaryninja executable. In the future, we will change the default workding directory to the folder that the executabl

(self)

Source from the content-addressed store, hash-verified

1133
1134 @property
1135 def working_directory(self) -> str:
1136 """
1137 The path of the target. (read/write)
1138
1139 This can be set before launching the target to configure a working directory. Be default, it is the path of the
1140 binaryninja executable. In the future, we will change the default workding directory to the folder that the
1141 executable is in.
1142
1143 :getter: returns the working directory
1144 :setter: sets the working directory
1145 """
1146 return dbgcore.BNDebuggerGetWorkingDirectory(self.handle)
1147
1148 @working_directory.setter
1149 def working_directory(self, path: str) -> None:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected