2010-09-23 03:19:47 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
2010-09-28 04:25:41 +00:00
|
|
|
|
namespace NzbDrone.Core.Providers
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2010-09-28 04:25:41 +00:00
|
|
|
|
public interface IDiskProvider
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
|
|
|
|
bool Exists(string path);
|
|
|
|
|
string[] GetDirectories(string path);
|
|
|
|
|
String CreateDirectory(string path);
|
|
|
|
|
}
|
|
|
|
|
}
|