You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Sonarr/NzbDrone.Core/Providers/DiskProvider.cs

27 lines
549 B

14 years ago
using System;
using System.IO;
namespace NzbDrone.Core.Providers
14 years ago
{
public class DiskProvider : IDiskProvider
14 years ago
{
#region IDiskProvider Members
14 years ago
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
}
}