mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-14 17:06:16 +00:00
Shorten name of EFE folder
This commit is contained in:
parent
c11f8ae66d
commit
cde4661260
@ -94,8 +94,8 @@ public final class EmbeddedFileExtractorIngestModule extends FileIngestModuleAda
|
||||
*
|
||||
*/
|
||||
Case currentCase = Case.getCurrentCase();
|
||||
String moduleDirAbsolute = Paths.get(currentCase.getModuleDirectory(), EmbeddedFileExtractorModuleFactory.getModuleName()).toString();
|
||||
String moduleDirRelative = Paths.get(currentCase.getModuleOutputDirectoryRelativePath(), EmbeddedFileExtractorModuleFactory.getModuleName()).toString();
|
||||
String moduleDirAbsolute = Paths.get(currentCase.getModuleDirectory(), EmbeddedFileExtractorModuleFactory.getOutputFolderName()).toString();
|
||||
String moduleDirRelative = Paths.get(currentCase.getModuleOutputDirectoryRelativePath(), EmbeddedFileExtractorModuleFactory.getOutputFolderName()).toString();
|
||||
|
||||
if (refCounter.incrementAndGet(jobId) == 1) {
|
||||
|
||||
|
@ -45,6 +45,10 @@ public class EmbeddedFileExtractorModuleFactory extends IngestModuleFactoryAdapt
|
||||
public String getModuleDisplayName() {
|
||||
return getModuleName();
|
||||
}
|
||||
|
||||
static String getOutputFolderName() {
|
||||
return "EFE";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getModuleDescription() {
|
||||
|
@ -112,8 +112,8 @@ public class ExtractArchiveWithPasswordAction extends AbstractAction {
|
||||
protected Boolean doInBackground() {
|
||||
boolean done = false;
|
||||
try {
|
||||
String moduleDirRelative = Paths.get(Case.getCurrentCaseThrows().getModuleOutputDirectoryRelativePath(), EmbeddedFileExtractorModuleFactory.getModuleName()).toString();
|
||||
String moduleDirAbsolute = Paths.get(Case.getCurrentCaseThrows().getModuleDirectory(), EmbeddedFileExtractorModuleFactory.getModuleName()).toString();
|
||||
String moduleDirRelative = Paths.get(Case.getCurrentCaseThrows().getModuleOutputDirectoryRelativePath(), EmbeddedFileExtractorModuleFactory.getOutputFolderName()).toString();
|
||||
String moduleDirAbsolute = Paths.get(Case.getCurrentCaseThrows().getModuleDirectory(), EmbeddedFileExtractorModuleFactory.getOutputFolderName()).toString();
|
||||
/*
|
||||
* Construct a file type detector.
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user