From a95ae52c09c068c50b7b9709b54faa41744d401a Mon Sep 17 00:00:00 2001 From: Greg DiCristofaro Date: Wed, 19 Aug 2020 13:01:59 -0400 Subject: [PATCH] comment update --- Core/src/org/sleuthkit/autopsy/casemodule/Case.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/casemodule/Case.java b/Core/src/org/sleuthkit/autopsy/casemodule/Case.java index 95eaeb716a..693e2f006f 100644 --- a/Core/src/org/sleuthkit/autopsy/casemodule/Case.java +++ b/Core/src/org/sleuthkit/autopsy/casemodule/Case.java @@ -1328,7 +1328,8 @@ public class Case { * @return The temp subdirectory path. */ public String getTempDirectory() { - // get temp folder scoped to the uuid of the case + // get temp folder scoped to the combination of case name and timestamp + // provieded by getName() Path path = Paths.get(UserPreferences.getAppTempDirectory(), CASE_TEMP_DIR, getName()); File f = path.toFile(); // verify that the folder exists