1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-23 08:15:27 +00:00
Sonarr/NzbDrone.Core/Controllers/IDiskController.cs
2010-09-22 20:19:47 -07:00

12 lines
No EOL
270 B
C#

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);
}
}