浏览代码

Merge pull request #1448 from joshuaboniface/nice-userconfig-paths

Use the username for the user config path
Andrew Rabert 6 年之前
父节点
当前提交
fc439cc02a
共有 1 个文件被更改,包括 9 次插入1 次删除
  1. 9 1
      MediaBrowser.Controller/Entities/User.cs

+ 9 - 1
MediaBrowser.Controller/Entities/User.cs

@@ -228,7 +228,15 @@ namespace MediaBrowser.Controller.Entities
                 return System.IO.Path.Combine(ConfigurationManager.ApplicationPaths.UserConfigurationDirectoryPath, safeFolderName);
                 return System.IO.Path.Combine(ConfigurationManager.ApplicationPaths.UserConfigurationDirectoryPath, safeFolderName);
             }
             }
 
 
-            return System.IO.Path.Combine(parentPath, Id.ToString("N"));
+            // TODO: Remove idPath and just use usernamePath for future releases
+            var usernamePath = System.IO.Path.Combine(parentPath, username);
+            var idPath = System.IO.Path.Combine(parentPath, Id.ToString("N"));
+            if (!Directory.Exists(usernamePath) && Directory.Exists(idPath))
+            {
+                Directory.Move(idPath, usernamePath);
+            }
+
+            return usernamePath;
         }
         }
 
 
         public bool IsParentalScheduleAllowed()
         public bool IsParentalScheduleAllowed()