12 lines
338 B
C#
12 lines
338 B
C#
using System.Collections.Generic;
|
|
using MediaBrowser.Model.IO;
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
{
|
|
public interface IDirectoryService
|
|
{
|
|
FileSystemMetadata[] GetFileSystemEntries(string path);
|
|
IEnumerable<FileSystemMetadata> GetFiles(string path);
|
|
FileSystemMetadata GetFile(string path);
|
|
}
|
|
} |