Interface FileImporterService

All Known Implementing Classes:
ImporterPlugin

public interface FileImporterService
Service for importing files into Ghidra.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    importFile(DomainFolder folder, File file)
    Imports the given file into the specified Ghidra project folder.
    void
    importFiles(DomainFolder folder, List<File> files)
    Imports the given files into the specified Ghidra project folder.
  • Method Details

    • importFile

      void importFile(DomainFolder folder, File file)
      Imports the given file into the specified Ghidra project folder.
      Parameters:
      folder - the Ghidra project folder to store the imported file. If null, the active project's root folder will be assumed.
      file - the file to import.
    • importFiles

      void importFiles(DomainFolder folder, List<File> files)
      Imports the given files into the specified Ghidra project folder.
      Parameters:
      folder - the Ghidra project folder to store the imported files. If null, the active project's root folder will be assumed.
      files - the files to import.