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