1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-03-04 02:28:21 +00:00
Sonarr/NzbDrone.Core/Providers/IDiskProvider.cs

11 lines
227 B
C#
Raw Normal View History

2010-09-22 20:19:47 -07:00
using System;
namespace NzbDrone.Core.Providers
2010-09-22 20:19:47 -07:00
{
public interface IDiskProvider
2010-09-22 20:19:47 -07:00
{
bool Exists(string path);
string[] GetDirectories(string path);
String CreateDirectory(string path);
}
}