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)
| 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: |
nothing calls this directly
no outgoing calls
no test coverage detected