diff --git a/src/libraries/System.Private.CoreLib/src/System/Environment.Android.cs b/src/libraries/System.Private.CoreLib/src/System/Environment.Android.cs index 44c8988532f367..53a46feff7251f 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Environment.Android.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Environment.Android.cs @@ -54,7 +54,6 @@ private static string GetFolderPathCore(SpecialFolder folder, SpecialFolderOptio switch (folder) { - case SpecialFolder.Personal: case SpecialFolder.LocalApplicationData: return home; @@ -65,6 +64,9 @@ private static string GetFolderPathCore(SpecialFolder folder, SpecialFolderOptio case SpecialFolder.DesktopDirectory: return Path.Combine(home, "Desktop"); + case SpecialFolder.MyDocuments: // Same value as Personal + return Path.Combine(home, "Documents"); + case SpecialFolder.MyMusic: return Path.Combine(home, "Music");