mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			707 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			707 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using MediaBrowser.Common.Configuration;
 | 
						|
using MediaBrowser.Controller.Entities;
 | 
						|
using System.IO;
 | 
						|
 | 
						|
namespace MediaBrowser.Server.Implementations.Collections
 | 
						|
{
 | 
						|
    public class CollectionsDynamicFolder : IVirtualFolderCreator
 | 
						|
    {
 | 
						|
        private readonly IApplicationPaths _appPaths;
 | 
						|
 | 
						|
        public CollectionsDynamicFolder(IApplicationPaths appPaths)
 | 
						|
        {
 | 
						|
            _appPaths = appPaths;
 | 
						|
        }
 | 
						|
 | 
						|
        public BasePluginFolder GetFolder()
 | 
						|
        {
 | 
						|
            var path = Path.Combine(_appPaths.DataPath, "collections");
 | 
						|
 | 
						|
            Directory.CreateDirectory(path);
 | 
						|
 | 
						|
            return new ManualCollectionsFolder
 | 
						|
            {
 | 
						|
                Path = path
 | 
						|
            };
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |