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