2010-09-23 03:19:47 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
2010-09-28 04:25:41 +00:00
|
|
|
|
namespace NzbDrone.Core.Providers
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2010-09-28 04:25:41 +00:00
|
|
|
|
public class DiskProvider : IDiskProvider
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2010-09-28 04:25:41 +00:00
|
|
|
|
#region IDiskProvider Members
|
2010-09-23 03:19:47 +00: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
|
2010-09-28 05:01:54 +00:00
|
|
|
|
|
|
|
|
|
public static string CleanPath(string path)
|
|
|
|
|
{
|
2010-09-28 06:09:24 +00:00
|
|
|
|
if (string.IsNullOrEmpty(path))
|
|
|
|
|
throw new ArgumentException("Path can not be null or empty");
|
2010-09-28 05:01:54 +00:00
|
|
|
|
return path.ToLower().Trim('/', '\\', ' ');
|
|
|
|
|
}
|
2010-09-23 03:19:47 +00:00
|
|
|
|
}
|
|
|
|
|
}
|