comment update

This commit is contained in:
Greg DiCristofaro 2020-08-19 13:01:59 -04:00
parent cbaba065b3
commit a95ae52c09

View File

@ -1328,7 +1328,8 @@ public class Case {
* @return The temp subdirectory path. * @return The temp subdirectory path.
*/ */
public String getTempDirectory() { 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()); Path path = Paths.get(UserPreferences.getAppTempDirectory(), CASE_TEMP_DIR, getName());
File f = path.toFile(); File f = path.toFile();
// verify that the folder exists // verify that the folder exists