1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-31 20:26:16 +00:00
Sonarr/NzbDrone.Core/Providers/IDiskProvider.cs

15 lines
406 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
namespace NzbDrone.Core.Providers
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);
2010-09-23 03:19:47 +00:00
}
}