mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-11 13:32:42 +01:00
27 lines
549 B
C#
27 lines
549 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public class DiskProvider : IDiskProvider
|
|
{
|
|
#region IDiskProvider 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;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
} |