1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-22 17:31:47 +02:00
Radarr/NzbDrone.Core/Providers/DiskProvider.cs

39 lines
978 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[] GetFiles(string path, string pattern, SearchOption searchOption)
{
return Directory.GetFiles(path, pattern, searchOption);
}
2010-09-23 05:19:47 +02:00
public String CreateDirectory(string path)
{
return Directory.CreateDirectory(path).FullName;
}
#endregion
2010-09-28 07:01:54 +02:00
public static string CleanPath(string path)
{
2010-09-28 08:09:24 +02:00
if (string.IsNullOrEmpty(path))
throw new ArgumentException("Path can not be null or empty");
2010-09-28 07:01:54 +02:00
return path.ToLower().Trim('/', '\\', ' ');
}
2010-09-23 05:19:47 +02:00
}
}