2010-09-23 05:19:47 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
2011-04-04 05:50:12 +02:00
|
|
|
|
namespace NzbDrone.Core.Providers.Core
|
2010-09-23 05:19:47 +02:00
|
|
|
|
{
|
2011-04-09 02:21:57 +02:00
|
|
|
|
public class DiskProvider
|
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
|
|
|
|
|
2011-04-09 02:21:57 +02:00
|
|
|
|
public virtual bool FolderExists(string path)
|
2010-09-23 05:19:47 +02:00
|
|
|
|
{
|
|
|
|
|
return Directory.Exists(path);
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-09 02:21:57 +02:00
|
|
|
|
public virtual bool FileExists(string path)
|
2010-10-24 09:46:58 +02:00
|
|
|
|
{
|
|
|
|
|
return File.Exists(path);
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-09 02:21:57 +02:00
|
|
|
|
public virtual string[] GetDirectories(string path)
|
2010-09-23 05:19:47 +02:00
|
|
|
|
{
|
|
|
|
|
return Directory.GetDirectories(path);
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-09 02:21:57 +02:00
|
|
|
|
public virtual string[] GetFiles(string path, string pattern, SearchOption searchOption)
|
2010-10-21 03:49:23 +02:00
|
|
|
|
{
|
|
|
|
|
return Directory.GetFiles(path, pattern, searchOption);
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-09 02:21:57 +02:00
|
|
|
|
public virtual long GetSize(string path)
|
2010-10-24 09:46:58 +02:00
|
|
|
|
{
|
2011-03-03 09:50:33 +01:00
|
|
|
|
var fi = new FileInfo(path);
|
|
|
|
|
return fi.Length;
|
|
|
|
|
//return new FileInfo(path).Length;
|
2010-10-24 09:46:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-09 02:21:57 +02:00
|
|
|
|
public virtual String CreateDirectory(string path)
|
2010-09-23 05:19:47 +02:00
|
|
|
|
{
|
|
|
|
|
return Directory.CreateDirectory(path).FullName;
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-09 02:21:57 +02:00
|
|
|
|
public virtual void DeleteFile(string path)
|
2011-02-18 07:49:23 +01:00
|
|
|
|
{
|
|
|
|
|
File.Delete(path);
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-09 02:21:57 +02:00
|
|
|
|
public virtual void RenameFile(string sourcePath, string destinationPath)
|
2011-02-22 07:22:40 +01:00
|
|
|
|
{
|
|
|
|
|
File.Move(sourcePath, destinationPath);
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-23 05:19:47 +02:00
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|