jellyfin-server/MediaBrowser.Controller/Providers/IDirectoryService.cs

21 lines
527 B
C#
Raw Normal View History

#pragma warning disable CA1002, CS1591
2018-12-27 23:27:57 +00:00
using System.Collections.Generic;
using MediaBrowser.Model.IO;
namespace MediaBrowser.Controller.Providers
{
public interface IDirectoryService
{
FileSystemMetadata[] GetFileSystemEntries(string path);
2018-12-27 23:27:57 +00:00
List<FileSystemMetadata> GetFiles(string path);
2021-05-06 22:52:06 +00:00
FileSystemMetadata? GetFile(string path);
2018-12-27 23:27:57 +00:00
2020-02-23 09:53:51 +00:00
IReadOnlyList<string> GetFilePaths(string path);
2021-05-23 22:30:41 +00:00
IReadOnlyList<string> GetFilePaths(string path, bool clearCache, bool sort = false);
2018-12-27 23:27:57 +00:00
}
}