2010-09-23 05:19:47 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
2010-09-28 06:25:41 +02:00
|
|
|
|
namespace NzbDrone.Core.Providers
|
2010-09-23 05:19:47 +02:00
|
|
|
|
{
|
2010-09-28 06:25:41 +02:00
|
|
|
|
public class DiskProvider : IDiskProvider
|
2010-09-23 05:19:47 +02:00
|
|
|
|
{
|
2010-09-28 06:25:41 +02:00
|
|
|
|
#region IDiskProvider Members
|
2010-09-23 05:19:47 +02:00
|
|
|
|
|
2010-10-24 09:46:58 +02:00
|
|
|
|
public bool FolderExists(string path)
|
2010-09-23 05:19:47 +02:00
|
|
|
|
{
|
|
|
|
|
return Directory.Exists(path);
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-24 09:46:58 +02:00
|
|
|
|
public bool FileExists(string path)
|
|
|
|
|
{
|
|
|
|
|
return File.Exists(path);
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-23 05:19:47 +02:00
|
|
|
|
public string[] GetDirectories(string path)
|
|
|
|
|
{
|
|
|
|
|
return Directory.GetDirectories(path);
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-21 03:49:23 +02:00
|
|
|
|
public string[] GetFiles(string path, string pattern, SearchOption searchOption)
|
|
|
|
|
{
|
|
|
|
|
return Directory.GetFiles(path, pattern, searchOption);
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-24 09:46:58 +02:00
|
|
|
|
public long GetSize(string path)
|
|
|
|
|
{
|
|
|
|
|
return new FileInfo(path).Length;
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-23 05:19:47 +02:00
|
|
|
|
public String CreateDirectory(string path)
|
|
|
|
|
{
|
|
|
|
|
return Directory.CreateDirectory(path).FullName;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-18 07:49:23 +01:00
|
|
|
|
public void DeleteFile(string path)
|
|
|
|
|
{
|
|
|
|
|
File.Delete(path);
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-23 05:19:47 +02:00
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|