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