mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
35 lines
787 B
C#
35 lines
787 B
C#
|
using System;
|
|||
|
using System.IO;
|
|||
|
|
|||
|
namespace NzbDrone.Core.Controllers
|
|||
|
{
|
|||
|
public class DiskController : IDiskController
|
|||
|
{
|
|||
|
#region IDiskController Members
|
|||
|
|
|||
|
public bool Exists(string path)
|
|||
|
{
|
|||
|
return Directory.Exists(path);
|
|||
|
}
|
|||
|
|
|||
|
public string[] GetDirectories(string path)
|
|||
|
{
|
|||
|
return Directory.GetDirectories(path);
|
|||
|
}
|
|||
|
|
|||
|
public String CreateDirectory(string path)
|
|||
|
{
|
|||
|
return Directory.CreateDirectory(path).FullName;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
public string CleanPath(string path)
|
|||
|
{
|
|||
|
if (string.IsNullOrEmpty(path)) throw new ArgumentException("Path can not be null or empty");
|
|||
|
|
|||
|
return path.ToLower().Trim('/', '\\', ' ');
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|