MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / project

Method project

python/project.py:222–233  ·  view source on GitHub ↗

Get the project that owns this folder :return: Project that owns this folder

(self)

Source from the content-addressed store, hash-verified

220
221 @property
222 def project(self) -> 'Project':
223 """
224 Get the project that owns this folder
225
226 :return: Project that owns this folder
227 """
228 proj_handle = core.BNProjectFolderGetProject(self._handle)
229
230 if proj_handle is None:
231 raise ProjectException("Failed to get project for folder")
232
233 return Project(handle=proj_handle)
234
235 @property
236 def id(self) -> str:

Callers

nothing calls this directly

Calls 2

ProjectExceptionClass · 0.70
ProjectClass · 0.70

Tested by

no test coverage detected