jellyfin/MediaBrowser.Controller/Providers/IDirectoryService.cs

17 lines
647 B
C#
Raw Normal View History

2015-03-13 20:37:19 +01:00
using System.Collections.Generic;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Common.IO;
using MediaBrowser.Controller.IO;
using MediaBrowser.Model.IO;
2015-03-13 20:37:19 +01:00
namespace MediaBrowser.Controller.Providers
{
public interface IDirectoryService
{
2015-10-04 05:38:46 +02:00
IEnumerable<FileSystemMetadata> GetFileSystemEntries(string path);
IEnumerable<FileSystemMetadata> GetFiles(string path);
IEnumerable<FileSystemMetadata> GetDirectories(string path);
IEnumerable<FileSystemMetadata> GetFiles(string path, bool clearCache);
FileSystemMetadata GetFile(string path);
Dictionary<string, FileSystemMetadata> GetFileSystemDictionary(string path);
2015-03-13 20:37:19 +01:00
}
}