mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00

Added basic support for file scan Major redactor of ReportTitle/File parsing Updated Ninject/Ninject.MVC Removed dependency from Microsoft.Web.Administration reactored Episode repository structure
13 lines
327 B
C#
13 lines
327 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public interface IDiskProvider
|
|
{
|
|
bool Exists(string path);
|
|
string[] GetDirectories(string path);
|
|
String CreateDirectory(string path);
|
|
string[] GetFiles(string path, string pattern, SearchOption searchOption);
|
|
}
|
|
} |