Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Providers/IDirectoryService.cs

12 lines
338 B
C#
Raw Normal View History

2015-03-13 15:37:19 -04:00
using System.Collections.Generic;
2016-10-25 15:02:04 -04:00
using MediaBrowser.Model.IO;
2015-03-13 15:37:19 -04:00
namespace MediaBrowser.Controller.Providers
{
public interface IDirectoryService
{
FileSystemMetadata[] GetFileSystemEntries(string path);
2017-03-29 02:26:48 -04:00
IEnumerable<FileSystemMetadata> GetFiles(string path);
2015-10-03 23:38:46 -04:00
FileSystemMetadata GetFile(string path);
2015-03-13 15:37:19 -04:00
}
}