1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-26 17:59:14 +00:00
Radarr/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
}
}