You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
547 B
15 lines
547 B
using System.Collections.Generic;
|
|
using System.IO;
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
{
|
|
public interface IDirectoryService
|
|
{
|
|
IEnumerable<FileSystemInfo> GetFileSystemEntries(string path);
|
|
IEnumerable<FileSystemInfo> GetFiles(string path);
|
|
IEnumerable<FileSystemInfo> GetDirectories(string path);
|
|
IEnumerable<FileSystemInfo> GetFiles(string path, bool clearCache);
|
|
FileSystemInfo GetFile(string path);
|
|
Dictionary<string, FileSystemInfo> GetFileSystemDictionary(string path);
|
|
}
|
|
} |