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