mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-19 20:09:03 -07:00
12 lines
331 B
C#
12 lines
331 B
C#
using System.Collections.Generic;
|
|
using MediaBrowser.Model.IO;
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
{
|
|
public interface IDirectoryService
|
|
{
|
|
FileSystemMetadata[] GetFileSystemEntries(string path);
|
|
List<FileSystemMetadata> GetFiles(string path);
|
|
FileSystemMetadata GetFile(string path);
|
|
}
|
|
} |