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 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

      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. 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.