2010-09-23 03:19:47 +00:00
|
|
|
|
using System;
|
2011-06-08 06:15:35 +00:00
|
|
|
|
using System.Collections.Generic;
|
2010-09-23 03:19:47 +00:00
|
|
|
|
using System.IO;
|
2011-06-08 06:15:35 +00:00
|
|
|
|
using System.Linq;
|
2010-09-23 03:19:47 +00:00
|
|
|
|
|
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);
|
|
|
|
|
}
|
2011-06-07 06:29:07 +00:00
|
|
|
|
|
|
|
|
|
public virtual string GetExtension(string path)
|
|
|
|
|
{
|
|
|
|
|
return Path.GetExtension(path);
|
|
|
|
|
}
|
2011-06-07 21:19:11 +00:00
|
|
|
|
|
|
|
|
|
public virtual void DeleteFolder(string path, bool recursive)
|
|
|
|
|
{
|
|
|
|
|
Directory.Delete(path, recursive);
|
|
|
|
|
}
|
2011-06-08 06:15:35 +00:00
|
|
|
|
|
|
|
|
|
public virtual DateTime DirectoryDateCreated(string path)
|
|
|
|
|
{
|
|
|
|
|
return Directory.GetCreationTime(path);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual IEnumerable<FileInfo> GetFileInfos(string path, string pattern, SearchOption searchOption)
|
|
|
|
|
{
|
|
|
|
|
return new DirectoryInfo(path).GetFiles(pattern, searchOption);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual void MoveDirectory(string source, string destination)
|
|
|
|
|
{
|
|
|
|
|
Directory.Move(source, destination);
|
|
|
|
|
}
|
2010-09-23 03:19:47 +00:00
|
|
|
|
}
|
|
|
|
|
}
|