mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
GP-5637: Fixing PyGhidra usage of DomainFileIterator
This commit is contained in:
parent
70b062e6d0
commit
cb68d29bac
1 changed files with 1 additions and 1 deletions
|
@ -282,7 +282,7 @@ def walk_project(
|
|||
start_folder = project.projectData.getFolder(start)
|
||||
if start_folder is None:
|
||||
raise FileNotFoundError(f'Starting folder "{start}" does not exist in the Project')
|
||||
for file in ProjectDataUtils.DomainFileIterator(start_folder):
|
||||
for file in ProjectDataUtils.descendantFiles(start_folder):
|
||||
if file_filter(file):
|
||||
callback(file)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue