jellyfin/MediaBrowser.Controller/Providers/IDirectoryService.cs

15 lines
570 B
C#
Raw Normal View History

2015-03-13 20:37:19 +01:00
using System.Collections.Generic;
2015-10-04 06:23:11 +02:00
using CommonIO;
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
}
}