jellyfin/MediaBrowser.Controller/Providers/IDirectoryService.cs

23 lines
576 B
C#
Raw Normal View History

#pragma warning disable CA1002, CA1819, 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);
2021-05-07 00:52:06 +02:00
FileSystemMetadata? GetFile(string path);
2018-12-28 00:27:57 +01:00
2020-02-23 10:53:51 +01:00
IReadOnlyList<string> GetFilePaths(string path);
2021-05-24 00:30:41 +02:00
IReadOnlyList<string> GetFilePaths(string path, bool clearCache, bool sort = false);
bool IsAccessible(string path);
2018-12-28 00:27:57 +01:00
}
}