1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-10-30 23:42:33 +01:00
Sonarr/NzbDrone.Core/Providers/DiskProvider.cs

27 lines
549 B
C#
Raw Normal View History

2010-09-23 05:19:47 +02:00
using System;
using System.IO;
namespace NzbDrone.Core.Providers
2010-09-23 05:19:47 +02:00
{
public class DiskProvider : IDiskProvider
2010-09-23 05:19:47 +02:00
{
#region IDiskProvider Members
2010-09-23 05:19:47 +02:00
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
}
}