mirror of
https://github.com/Radarr/Radarr
synced 2024-12-23 08:22:39 +00:00
12 lines
No EOL
270 B
C#
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);
|
|
}
|
|
} |