Sonarr/NzbDrone.Core/Controllers/IDiskController.cs

11 lines
231 B
C#
Raw Normal View History

2010-09-23 03:19:47 +00:00
using System;
namespace NzbDrone.Core.Controllers
{
public interface IDiskController
{
bool Exists(string path);
string[] GetDirectories(string path);
String CreateDirectory(string path);
}
}