jellyfin/MediaBrowser.Controller/Providers/IDirectoryService.cs

21 lines
499 B
C#
Raw Normal View History

#pragma warning disable CS1591
2018-12-28 00:27:57 +01:00
using System.Collections.Generic;
using MediaBrowser.Model.IO;
namespace MediaBrowser.Controller.Providers
{
public interface IDirectoryService
{
FileSystemMetadata[] GetFileSystemEntries(string path);
2018-12-28 00:27:57 +01:00
List<FileSystemMetadata> GetFiles(string path);
2018-12-28 00:27:57 +01:00
FileSystemMetadata GetFile(string path);
2020-02-23 10:53:51 +01:00
IReadOnlyList<string> GetFilePaths(string path);
2020-02-23 10:53:51 +01:00
IReadOnlyList<string> GetFilePaths(string path, bool clearCache);
2018-12-28 00:27:57 +01:00
}
}