mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
Ignore ._ files when searching for files by extension
This commit is contained in:
parent
777bcbef17
commit
539710cdf7
1 changed files with 6 additions and 0 deletions
|
@ -161,6 +161,12 @@ public class GModule {
|
|||
}
|
||||
}
|
||||
else {
|
||||
|
||||
// Ignore ._ resource fork files
|
||||
if (child.getName().startsWith("._")) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (child.getName().endsWith(extension)) {
|
||||
accumulator.add(child);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue