Package ghidra.app.services
Interface FileImporterService
-
- All Known Implementing Classes:
ImporterPlugin
public interface FileImporterService
Service for importing files into Ghidra.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
importFile(DomainFolder folder, java.io.File file)
Imports the given file into the specified Ghidra project folder.void
importFiles(DomainFolder folder, java.util.List<java.io.File> files)
Imports the given files into the specified Ghidra project folder.
-
-
-
Method Detail
-
importFile
void importFile(DomainFolder folder, java.io.File file)
Imports the given file into the specified Ghidra project folder.- Parameters:
folder
- the Ghidra project folder to store the imported file.file
- the file to import.
-
importFiles
void importFiles(DomainFolder folder, java.util.List<java.io.File> files)
Imports the given files into the specified Ghidra project folder.- Parameters:
folder
- the Ghidra project folder to store the imported files.files
- the files to import.
-
-