1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-02-05 06:12:02 +00:00
Radarr/NzbDrone.Core/Providers/IDiskProvider.cs

11 lines
No EOL
227 B
C#

using System;
namespace NzbDrone.Core.Providers
{
public interface IDiskProvider
{
bool Exists(string path);
string[] GetDirectories(string path);
String CreateDirectory(string path);
}
}