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

Method export

python/project.py:302–310  ·  view source on GitHub ↗

Recursively export this folder to disk :param dest: Destination path for the exported contents :param progress_func: Progress function that will be called as contents are exporting :return: True if the export succeeded, False otherwise

(self, dest: AsPath, progress_func: ProgressFuncType = _nop)

Source from the content-addressed store, hash-verified

300 return core.BNProjectFolderSetParent(self._handle, parent_handle)
301
302 def export(self, dest: AsPath, progress_func: ProgressFuncType = _nop) -> bool:
303 """
304 Recursively export this folder to disk
305
306 :param dest: Destination path for the exported contents
307 :param progress_func: Progress function that will be called as contents are exporting
308 :return: True if the export succeeded, False otherwise
309 """
310 return core.BNProjectFolderExport(self._handle, str(dest), None, _wrap_progress(progress_func))
311
312
313class Project:

Callers

nothing calls this directly

Calls 1

_wrap_progressFunction · 0.85

Tested by

no test coverage detected