Sonarr/NzbDrone.Core/Providers/Core/DiskProvider.cs

54 lines
1.2 KiB
C#
Raw Normal View History

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
{
public class DiskProvider : IDiskProvider
2010-09-23 03:19:47 +00:00
{
#region IDiskProvider Members
2010-09-23 03:19:47 +00:00
public bool FolderExists(string path)
2010-09-23 03:19:47 +00:00
{
return Directory.Exists(path);
}
public bool FileExists(string path)
{
return File.Exists(path);
}
2010-09-23 03:19:47 +00:00
public string[] GetDirectories(string path)
{
return Directory.GetDirectories(path);
}
public string[] GetFiles(string path, string pattern, SearchOption searchOption)
{
return Directory.GetFiles(path, pattern, searchOption);
}
public long GetSize(string path)
{
var fi = new FileInfo(path);
return fi.Length;
//return new FileInfo(path).Length;
}
2010-09-23 03:19:47 +00:00
public String CreateDirectory(string path)
{
return Directory.CreateDirectory(path).FullName;
}
public void DeleteFile(string path)
{
File.Delete(path);
}
public void RenameFile(string sourcePath, string destinationPath)
{
File.Move(sourcePath, destinationPath);
}
2010-09-23 03:19:47 +00:00
#endregion
}
}