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()) {