mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
1a9948de2f
Removed IIndexerProvider.
54 lines
1.3 KiB
C#
54 lines
1.3 KiB
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace NzbDrone.Core.Providers.Core
|
|
{
|
|
public class DiskProvider
|
|
{
|
|
#region IDiskProvider Members
|
|
|
|
public virtual bool FolderExists(string path)
|
|
{
|
|
return Directory.Exists(path);
|
|
}
|
|
|
|
public virtual bool FileExists(string path)
|
|
{
|
|
return File.Exists(path);
|
|
}
|
|
|
|
public virtual string[] GetDirectories(string path)
|
|
{
|
|
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)
|
|
{
|
|
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);
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
} |