mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 02:09:44 +02:00
GP-4563: Support for searching for libraries inside a GFileSystem
This commit is contained in:
parent
9911db9828
commit
9f883022a4
7 changed files with 140 additions and 62 deletions
|
@ -278,8 +278,10 @@ public class PathnameTablePanel extends JPanel {
|
|||
pathName = "";
|
||||
}
|
||||
else {
|
||||
File file = new File(pathName);
|
||||
fileExists = file.exists();
|
||||
int colonSlashSlash = pathName.indexOf("://");
|
||||
if (colonSlashSlash <= 0) { // Assume FSRL/URLs always exist
|
||||
fileExists = new File(pathName).exists();
|
||||
}
|
||||
}
|
||||
|
||||
label.setText(pathName.toString());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue