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");