1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00
Radarr/NzbDrone.Core/Controllers/IDiskController.cs

12 lines
270 B
C#
Raw Normal View History

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