1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone.Core/Providers/Core/DiskProvider.cs

50 lines
1.2 KiB
C#
Raw Normal View History

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