mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-06 23:24:55 -04: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);
|
|
}
|
|
} |