jellyfin/MediaBrowser.Controller/Providers/IDirectoryService.cs

12 lines
331 B
C#
Raw Normal View History

2015-03-13 12:37:19 -07:00
using System.Collections.Generic;
2016-10-25 12:02:04 -07:00
using MediaBrowser.Model.IO;
2015-03-13 12:37:19 -07:00
namespace MediaBrowser.Controller.Providers
{
public interface IDirectoryService
{
FileSystemMetadata[] GetFileSystemEntries(string path);
2017-08-24 12:52:19 -07:00
List<FileSystemMetadata> GetFiles(string path);
2015-10-03 20:38:46 -07:00
FileSystemMetadata GetFile(string path);
2015-03-13 12:37:19 -07:00
}
}