jellyfin/MediaBrowser.Server.Implementations/Collections/CollectionsDynamicFolder.cs

32 lines
819 B
C#
Raw Normal View History

using MediaBrowser.Common.Configuration;
using MediaBrowser.Controller.Entities;
using System.IO;
2015-10-04 06:23:11 +02:00
using CommonIO;
namespace MediaBrowser.Server.Implementations.Collections
{
public class CollectionsDynamicFolder : IVirtualFolderCreator
{
private readonly IApplicationPaths _appPaths;
2015-09-14 01:07:54 +02:00
private IFileSystem _fileSystem;
2015-09-14 01:07:54 +02:00
public CollectionsDynamicFolder(IApplicationPaths appPaths, IFileSystem fileSystem)
{
_appPaths = appPaths;
2015-09-14 01:07:54 +02:00
_fileSystem = fileSystem;
}
public BasePluginFolder GetFolder()
{
var path = Path.Combine(_appPaths.DataPath, "collections");
2015-09-13 23:32:02 +02:00
_fileSystem.CreateDirectory(path);
return new ManualCollectionsFolder
{
Path = path
};
}
}
}