mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-01 07:55:22 +02:00
11 lines
227 B
C#
11 lines
227 B
C#
using System;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public interface IDiskProvider
|
|
{
|
|
bool Exists(string path);
|
|
string[] GetDirectories(string path);
|
|
String CreateDirectory(string path);
|
|
}
|
|
} |