From 1acb2123c56f4e759212aedc52a2e0641105882a Mon Sep 17 00:00:00 2001 From: Nathan Glenn Date: Sun, 7 Jul 2024 15:43:12 -0500 Subject: [PATCH] Note location of debugger settings on modern Windows --- .../src/edu/umich/soar/debugger/general/AppProperties.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Java/Debugger/src/edu/umich/soar/debugger/general/AppProperties.java b/Java/Debugger/src/edu/umich/soar/debugger/general/AppProperties.java index e493222d90..9da27f8c58 100644 --- a/Java/Debugger/src/edu/umich/soar/debugger/general/AppProperties.java +++ b/Java/Debugger/src/edu/umich/soar/debugger/general/AppProperties.java @@ -80,6 +80,9 @@ public static File GetSettingsFilePath(String filename) // directory (which is C:\Documents and Settings\). if (osName.toLowerCase().startsWith("windows")) { + // NOTE: in current Windows, the path below resolves to + // C:/Users//AppData/Roaming/SoarDebugger + // Add the Application Data folder name. // BUGBUG: Not sure how to do this in a language neutral way. homeDir = new File(homeDir, "Application Data");