aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Library/LibraryManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-10-23 12:51:51 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-10-23 12:51:51 -0400
commit73b294b4cea8a242910124e493e317ab0fae5e92 (patch)
tree05930422bc3159fa7ef33fb2fbfe76cd9a626716 /MediaBrowser.Server.Implementations/Library/LibraryManager.cs
parentffcfa2d85843aaa9a99131d531296b0b54cc0e34 (diff)
fixes #595 - Linux/Unix file quantity limitation for ImagesByName/People folder
Diffstat (limited to 'MediaBrowser.Server.Implementations/Library/LibraryManager.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Library/LibraryManager.cs16
1 files changed, 15 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Library/LibraryManager.cs b/MediaBrowser.Server.Implementations/Library/LibraryManager.cs
index b632792f6..59ae9b734 100644
--- a/MediaBrowser.Server.Implementations/Library/LibraryManager.cs
+++ b/MediaBrowser.Server.Implementations/Library/LibraryManager.cs
@@ -703,7 +703,21 @@ namespace MediaBrowser.Server.Implementations.Library
var validFilename = FileSystem.GetValidFilename(name);
- var key = Path.Combine(path, validFilename);
+ string subFolderPrefix = null;
+
+ if (typeof(T) == typeof(Person) && ConfigurationManager.Configuration.EnablePeoplePrefixSubFolders)
+ {
+ subFolderPrefix = validFilename.Substring(0, 1);
+
+ if (string.IsNullOrWhiteSpace(subFolderPrefix))
+ {
+ subFolderPrefix = "0";
+ }
+ }
+
+ var key = string.IsNullOrEmpty(subFolderPrefix) ?
+ Path.Combine(path, validFilename) :
+ Path.Combine(path, subFolderPrefix, validFilename);
BaseItem obj;