Package ghidra.app.services
Interface FileImporterService
- All Known Implementing Classes:
ImporterPlugin
public interface FileImporterService
Service for importing files into Ghidra.
-
Method Summary
Modifier and TypeMethodDescriptionvoidimportFile(DomainFolder folder, File file) Imports the given file into the specified Ghidra project folder.voidimportFiles(DomainFolder folder, List<File> files) Imports the given files into the specified Ghidra project folder.
-
Method Details
-
importFile
Imports the given file into the specified Ghidra project folder.- Parameters:
folder- the folder to use as the destination for the import. If the value is null, then the last used folder is preferred, with the root folder being used by default.file- the file to import.
-
importFiles
Imports the given files into the specified Ghidra project folder.- Parameters:
folder- the Ghidra project folder to store the imported files. The folder to use as the destination for the import. If the value is null, then the last used folder is preferred, with the root folder being used by default.files- the files to import.
-