From 205e48246bd4ba521df28d7b2cf543157c0465c1 Mon Sep 17 00:00:00 2001 From: jmillman Date: Fri, 17 Jul 2015 12:22:52 -0400 Subject: [PATCH] save videos for thumbnails in temp folder --- Core/src/org/sleuthkit/autopsy/coreutils/ImageUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/coreutils/ImageUtils.java b/Core/src/org/sleuthkit/autopsy/coreutils/ImageUtils.java index 2a5553f0ed..89c4a94d9a 100755 --- a/Core/src/org/sleuthkit/autopsy/coreutils/ImageUtils.java +++ b/Core/src/org/sleuthkit/autopsy/coreutils/ImageUtils.java @@ -321,7 +321,7 @@ public class ImageUtils { final String extension = file.getNameExtension(); - java.io.File tempFile = Paths.get(Case.getCurrentCase().getCacheDirectory(), "videos", file.getId() + "." + extension).toFile(); + java.io.File tempFile = Paths.get(Case.getCurrentCase().getTempDirectory(), "videos", file.getId() + "." + extension).toFile(); try { if (tempFile.exists() == false || tempFile.length() < file.getSize()) {