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
|
|
|
|
|
2010-10-24 07:46:58 +00:00
|
|
|
|
public bool FolderExists(string path)
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
|
|
|
|
return Directory.Exists(path);
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-24 07:46:58 +00:00
|
|
|
|
public bool FileExists(string path)
|
|
|
|
|
{
|
|
|
|
|
return File.Exists(path);
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-23 03:19:47 +00:00
|
|
|
|
public string[] GetDirectories(string path)
|
|
|
|
|
{
|
|
|
|
|
return Directory.GetDirectories(path);
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-21 01:49:23 +00:00
|
|
|
|
public string[] GetFiles(string path, string pattern, SearchOption searchOption)
|
|
|
|
|
{
|
|
|
|
|
return Directory.GetFiles(path, pattern, searchOption);
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-24 07:46:58 +00:00
|
|
|
|
public long GetSize(string path)
|
|
|
|
|
{
|
|
|
|
|
return new FileInfo(path).Length;
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-23 03:19:47 +00:00
|
|
|
|
public String CreateDirectory(string path)
|
|
|
|
|
{
|
|
|
|
|
return Directory.CreateDirectory(path).FullName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|