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