You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.2 KiB
50 lines
1.2 KiB
using System;
|
|
using System.IO;
|
|
|
|
namespace NzbDrone.Core.Providers.Core
|
|
{
|
|
public class DiskProvider
|
|
{
|
|
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);
|
|
}
|
|
}
|
|
} |