mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Initial Commit
This commit is contained in:
commit
74ac3bb599
106 changed files with 118079 additions and 0 deletions
12
NzbDrone.Core/Controllers/IDiskController.cs
Normal file
12
NzbDrone.Core/Controllers/IDiskController.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
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);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue