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

Method input_file

api/python/debuggercontroller.py:1118–1128  ·  view source on GitHub ↗

The input file used to create the database This should be set before launching the target. Be default, it is the path of the FileMetadata (``bv.file.filename``) :getter: returns the input file path :setter: sets the input file path

(self)

Source from the content-addressed store, hash-verified

1116
1117 @property
1118 def input_file(self) -> str:
1119 """
1120 The input file used to create the database
1121
1122 This should be set before launching the target. Be default, it is the path of the FileMetadata
1123 (``bv.file.filename``)
1124
1125 :getter: returns the input file path
1126 :setter: sets the input file path
1127 """
1128 return dbgcore.BNDebuggerGetInputFile(self.handle)
1129
1130 @input_file.setter
1131 def input_file(self, path: str) -> None:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected