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

Method executable_path

api/python/debuggercontroller.py:1101–1111  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected