The path of the executable. (read/write) This can be set before launching the target. Be default, it is the path of the FileMetadata (``bv.file.filename``) :getter: returns the executable path :setter: sets the executable path
(self)
| 1099 | |
| 1100 | @property |
| 1101 | def executable_path(self) -> str: |
| 1102 | """ |
| 1103 | The path of the executable. (read/write) |
| 1104 | |
| 1105 | This can be set before launching the target. Be default, it is the path of the FileMetadata |
| 1106 | (``bv.file.filename``) |
| 1107 | |
| 1108 | :getter: returns the executable path |
| 1109 | :setter: sets the executable path |
| 1110 | """ |
| 1111 | return dbgcore.BNDebuggerGetExecutablePath(self.handle) |
| 1112 | |
| 1113 | @executable_path.setter |
| 1114 | def executable_path(self, path: str) -> None: |
nothing calls this directly
no outgoing calls
no test coverage detected