jellyfin/MediaBrowser.Controller/Providers/IDirectoryService.cs

12 lines
331 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.Model.IO;
2015-03-13 20:37:19 +01:00
namespace MediaBrowser.Controller.Providers
{
public interface IDirectoryService
{
FileSystemMetadata[] GetFileSystemEntries(string path);
2017-08-24 21:52:19 +02:00
List<FileSystemMetadata> GetFiles(string path);
2015-10-04 05:38:46 +02:00
FileSystemMetadata GetFile(string path);
2015-03-13 20:37:19 +01:00
}
}