Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ private static string GetFolderPathCore(SpecialFolder folder, SpecialFolderOptio

switch (folder)
{
case SpecialFolder.Personal:
case SpecialFolder.LocalApplicationData:
return home;

Expand All @@ -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");

Expand Down