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.
39 lines
978 B
39 lines
978 B
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[] GetFiles(string path, string pattern, SearchOption searchOption)
|
|
{
|
|
return Directory.GetFiles(path, pattern, searchOption);
|
|
}
|
|
|
|
public String CreateDirectory(string path)
|
|
{
|
|
return Directory.CreateDirectory(path).FullName;
|
|
}
|
|
|
|
#endregion
|
|
|
|
public static string CleanPath(string path)
|
|
{
|
|
if (string.IsNullOrEmpty(path))
|
|
throw new ArgumentException("Path can not be null or empty");
|
|
return path.ToLower().Trim('/', '\\', ' ');
|
|
}
|
|
}
|
|
} |