Sonarr/NzbDrone.Core/Providers/Core/IDiskProvider.cs

17 lines
517 B
C#
Raw Normal View History

2010-09-23 03:19:47 +00:00
using System;
using System.IO;
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
{
public interface IDiskProvider
2010-09-23 03:19:47 +00:00
{
bool FolderExists(string path);
2010-09-23 03:19:47 +00:00
string[] GetDirectories(string path);
String CreateDirectory(string path);
string[] GetFiles(string path, string pattern, SearchOption searchOption);
bool FileExists(string path);
long GetSize(string path);
void DeleteFile(string path);
void RenameFile(string sourcePath, string destinationPath);
2010-09-23 03:19:47 +00:00
}
}