Skip to content
Snippets Groups Projects
Commit 6e5e2ff2 authored by Greg DiCristofaro's avatar Greg DiCristofaro
Browse files

fix for local app data on non-windows systems

parent 2ec56b2d
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,7 @@
import java.util.Objects;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.apache.commons.lang3.StringUtils;
import org.openide.modules.Places;
/**
......@@ -38,7 +39,11 @@ private static String getAppDataLocalDirectory() {
LOGGER.log(Level.INFO, "Application Data (test mode) Path: " + Places.getUserDirectory().getAbsolutePath());
return Places.getUserDirectory().getAbsolutePath();
} else {
Path localAppPath = Paths.get(System.getenv("LOCALAPPDATA"), "cybertriage");
Path localAppPath = StringUtils.isBlank(System.getenv("LOCALAPPDATA"))
? Places.getUserDirectory().toPath().toAbsolutePath()
: Paths.get(System.getenv("LOCALAPPDATA"), "cybertriage");
try {
Files.createDirectories(localAppPath);
LOGGER.log(Level.INFO, "Application Data Path: " + localAppPath.toString());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment