2011-10-23 05:26:43 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
2011-11-13 04:07:06 +00:00
|
|
|
|
using System.Runtime.InteropServices;
|
2011-10-23 05:26:43 +00:00
|
|
|
|
using NLog;
|
|
|
|
|
|
2011-10-23 22:44:37 +00:00
|
|
|
|
namespace NzbDrone.Common
|
2011-10-23 05:26:43 +00:00
|
|
|
|
{
|
|
|
|
|
public class DiskProvider
|
|
|
|
|
{
|
2011-11-18 06:52:50 +00:00
|
|
|
|
enum TransferAction
|
|
|
|
|
{
|
|
|
|
|
Copy,
|
|
|
|
|
Move
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-13 04:07:06 +00:00
|
|
|
|
[DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Auto)]
|
|
|
|
|
[return: MarshalAs(UnmanagedType.Bool)]
|
|
|
|
|
static extern bool GetDiskFreeSpaceEx(string lpDirectoryName,
|
|
|
|
|
out ulong lpFreeBytesAvailable,
|
|
|
|
|
out ulong lpTotalNumberOfBytes,
|
|
|
|
|
out ulong lpTotalNumberOfFreeBytes);
|
|
|
|
|
|
2011-10-23 05:26:43 +00:00
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
|
2013-04-15 01:41:39 +00:00
|
|
|
|
public virtual DateTime GetLastFolderWrite(string path)
|
2012-01-23 04:34:30 +00:00
|
|
|
|
{
|
|
|
|
|
if (!FolderExists(path))
|
|
|
|
|
{
|
|
|
|
|
throw new DirectoryNotFoundException("Directory doesn't exist. " + path);
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-23 04:59:23 +00:00
|
|
|
|
var dirFiles = GetFiles(path, SearchOption.AllDirectories).ToList();
|
|
|
|
|
|
|
|
|
|
if (!dirFiles.Any())
|
|
|
|
|
{
|
|
|
|
|
return new DirectoryInfo(path).LastWriteTimeUtc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return dirFiles.Select(f => new FileInfo(f))
|
|
|
|
|
.Max(c => c.LastWriteTimeUtc);
|
2012-01-23 04:34:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-08-29 15:34:51 +00:00
|
|
|
|
public virtual DateTime GetLastFileWrite(string path)
|
|
|
|
|
{
|
|
|
|
|
if (!FileExists(path))
|
|
|
|
|
throw new FileNotFoundException("File doesn't exist: " + path);
|
|
|
|
|
|
|
|
|
|
return new FileInfo(path).LastWriteTimeUtc;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-15 01:41:39 +00:00
|
|
|
|
|
|
|
|
|
public virtual void EnsureFolder(string path)
|
|
|
|
|
{
|
|
|
|
|
if (!FolderExists(path))
|
|
|
|
|
{
|
|
|
|
|
CreateFolder(path);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-23 05:26:43 +00:00
|
|
|
|
public virtual bool FolderExists(string path)
|
|
|
|
|
{
|
|
|
|
|
return Directory.Exists(path);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual bool FileExists(string path)
|
|
|
|
|
{
|
|
|
|
|
return File.Exists(path);
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-23 06:43:11 +00:00
|
|
|
|
public virtual string[] GetDirectories(string path)
|
2011-10-23 05:26:43 +00:00
|
|
|
|
{
|
2012-01-23 06:43:11 +00:00
|
|
|
|
return Directory.GetDirectories(path);
|
2011-10-23 05:26:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-01-23 06:43:11 +00:00
|
|
|
|
public virtual string[] GetFiles(string path, SearchOption searchOption)
|
2011-10-23 05:26:43 +00:00
|
|
|
|
{
|
2012-01-23 06:43:11 +00:00
|
|
|
|
return Directory.GetFiles(path, "*.*", searchOption);
|
2011-10-23 05:26:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual long GetDirectorySize(string path)
|
|
|
|
|
{
|
|
|
|
|
return GetFiles(path, SearchOption.AllDirectories).Sum(e => new FileInfo(e).Length);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual long GetSize(string path)
|
|
|
|
|
{
|
2012-10-20 01:42:42 +00:00
|
|
|
|
if (!FileExists(path))
|
|
|
|
|
throw new FileNotFoundException("File doesn't exist: " + path);
|
|
|
|
|
|
2011-10-23 05:26:43 +00:00
|
|
|
|
var fi = new FileInfo(path);
|
|
|
|
|
return fi.Length;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-15 01:41:39 +00:00
|
|
|
|
public virtual String CreateFolder(string path)
|
2011-10-23 05:26:43 +00:00
|
|
|
|
{
|
|
|
|
|
return Directory.CreateDirectory(path).FullName;
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-13 04:07:06 +00:00
|
|
|
|
public virtual void CopyDirectory(string source, string target)
|
|
|
|
|
{
|
2011-11-18 06:52:50 +00:00
|
|
|
|
TransferDirectory(source, target, TransferAction.Copy);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual void MoveDirectory(string source, string destination)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
TransferDirectory(source, destination, TransferAction.Move);
|
|
|
|
|
Directory.Delete(source, true);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
e.Data.Add("Source", source);
|
|
|
|
|
e.Data.Add("Destination", destination);
|
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void TransferDirectory(string source, string target, TransferAction transferAction)
|
|
|
|
|
{
|
|
|
|
|
Logger.Trace("{0} {1} -> {2}", transferAction, source, target);
|
2011-11-13 04:07:06 +00:00
|
|
|
|
|
|
|
|
|
var sourceFolder = new DirectoryInfo(source);
|
|
|
|
|
var targetFolder = new DirectoryInfo(target);
|
|
|
|
|
|
|
|
|
|
if (!targetFolder.Exists)
|
|
|
|
|
{
|
|
|
|
|
targetFolder.Create();
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-14 04:05:33 +00:00
|
|
|
|
foreach (var subDir in sourceFolder.GetDirectories())
|
|
|
|
|
{
|
2011-11-18 06:52:50 +00:00
|
|
|
|
TransferDirectory(subDir.FullName, Path.Combine(target, subDir.Name), transferAction);
|
2011-11-14 04:05:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-11-18 07:16:05 +00:00
|
|
|
|
foreach (var sourceFile in sourceFolder.GetFiles("*.*", SearchOption.TopDirectoryOnly))
|
2011-11-13 04:07:06 +00:00
|
|
|
|
{
|
2011-11-18 07:16:05 +00:00
|
|
|
|
var destFile = Path.Combine(target, sourceFile.Name);
|
2011-11-18 06:52:50 +00:00
|
|
|
|
|
|
|
|
|
switch (transferAction)
|
|
|
|
|
{
|
|
|
|
|
case TransferAction.Copy:
|
|
|
|
|
{
|
2011-11-18 07:16:05 +00:00
|
|
|
|
sourceFile.CopyTo(destFile, true);
|
2011-11-18 06:52:50 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case TransferAction.Move:
|
|
|
|
|
{
|
2011-11-18 07:16:05 +00:00
|
|
|
|
MoveFile(sourceFile.FullName, destFile);
|
2011-11-18 06:52:50 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-13 04:07:06 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-23 05:26:43 +00:00
|
|
|
|
public virtual void DeleteFile(string path)
|
|
|
|
|
{
|
2011-11-20 05:35:44 +00:00
|
|
|
|
Logger.Trace("Deleting file: {0}", path);
|
2011-10-23 05:26:43 +00:00
|
|
|
|
File.Delete(path);
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-14 08:06:54 +00:00
|
|
|
|
public virtual void MoveFile(string source, string destination)
|
2011-10-23 05:26:43 +00:00
|
|
|
|
{
|
2011-12-14 08:06:54 +00:00
|
|
|
|
if (PathEquals(source, destination))
|
2011-11-18 07:16:05 +00:00
|
|
|
|
{
|
2011-12-14 08:06:54 +00:00
|
|
|
|
Logger.Warn("Source and destination can't be the same {0}", source);
|
|
|
|
|
return;
|
2011-11-18 07:16:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-12-14 08:06:54 +00:00
|
|
|
|
if (FileExists(destination))
|
|
|
|
|
{
|
|
|
|
|
DeleteFile(destination);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
File.Move(source, destination);
|
2011-10-23 05:26:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual void DeleteFolder(string path, bool recursive)
|
|
|
|
|
{
|
|
|
|
|
Directory.Delete(path, recursive);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual DateTime DirectoryDateCreated(string path)
|
|
|
|
|
{
|
|
|
|
|
return Directory.GetCreationTime(path);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual IEnumerable<FileInfo> GetFileInfos(string path, string pattern, SearchOption searchOption)
|
|
|
|
|
{
|
2011-11-18 06:52:50 +00:00
|
|
|
|
return new DirectoryInfo(path).EnumerateFiles(pattern, searchOption);
|
2011-10-23 05:26:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual void InheritFolderPermissions(string filename)
|
|
|
|
|
{
|
|
|
|
|
var fs = File.GetAccessControl(filename);
|
|
|
|
|
fs.SetAccessRuleProtection(false, false);
|
|
|
|
|
File.SetAccessControl(filename, fs);
|
|
|
|
|
}
|
2011-11-13 04:07:06 +00:00
|
|
|
|
|
2013-04-15 01:41:39 +00:00
|
|
|
|
public virtual ulong GetAvilableSpace(string path)
|
2011-11-13 04:07:06 +00:00
|
|
|
|
{
|
2013-02-17 04:33:56 +00:00
|
|
|
|
if (!FolderExists(path))
|
|
|
|
|
throw new DirectoryNotFoundException(path);
|
2012-10-20 06:46:12 +00:00
|
|
|
|
|
2011-11-13 04:07:06 +00:00
|
|
|
|
ulong freeBytesAvailable;
|
|
|
|
|
ulong totalNumberOfBytes;
|
|
|
|
|
ulong totalNumberOfFreeBytes;
|
|
|
|
|
|
2013-02-17 04:33:56 +00:00
|
|
|
|
bool success = GetDiskFreeSpaceEx(path, out freeBytesAvailable, out totalNumberOfBytes,
|
2011-11-13 04:07:06 +00:00
|
|
|
|
out totalNumberOfFreeBytes);
|
|
|
|
|
if (!success)
|
|
|
|
|
throw new System.ComponentModel.Win32Exception();
|
|
|
|
|
|
|
|
|
|
return freeBytesAvailable;
|
|
|
|
|
}
|
2011-11-22 06:55:09 +00:00
|
|
|
|
|
|
|
|
|
public virtual string ReadAllText(string filePath)
|
|
|
|
|
{
|
|
|
|
|
return File.ReadAllText(filePath);
|
|
|
|
|
}
|
2011-12-10 19:22:47 +00:00
|
|
|
|
|
2012-07-10 04:37:24 +00:00
|
|
|
|
public virtual void WriteAllText(string filename, string contents)
|
|
|
|
|
{
|
|
|
|
|
File.WriteAllText(filename, contents);
|
|
|
|
|
}
|
2011-12-10 19:22:47 +00:00
|
|
|
|
|
|
|
|
|
public static bool PathEquals(string firstPath, string secondPath)
|
|
|
|
|
{
|
|
|
|
|
return String.Equals(firstPath.NormalizePath(), secondPath.NormalizePath(), StringComparison.InvariantCultureIgnoreCase);
|
|
|
|
|
}
|
2012-08-29 15:34:51 +00:00
|
|
|
|
|
2012-09-04 06:49:04 +00:00
|
|
|
|
public virtual void FileSetLastWriteTimeUtc(string path, DateTime dateTime)
|
|
|
|
|
{
|
|
|
|
|
File.SetLastWriteTimeUtc(path, dateTime);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual void DirectorySetLastWriteTimeUtc(string path, DateTime dateTime)
|
|
|
|
|
{
|
|
|
|
|
Directory.SetLastWriteTimeUtc(path, dateTime);
|
|
|
|
|
}
|
2012-10-20 08:01:47 +00:00
|
|
|
|
|
|
|
|
|
public virtual bool IsFolderLocked(string path)
|
|
|
|
|
{
|
|
|
|
|
var files = GetFileInfos(path, "*.*", SearchOption.AllDirectories);
|
|
|
|
|
|
2013-04-15 01:41:39 +00:00
|
|
|
|
foreach (var fileInfo in files)
|
2012-10-20 08:01:47 +00:00
|
|
|
|
{
|
|
|
|
|
if (IsFileLocked(fileInfo))
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual bool IsFileLocked(FileInfo file)
|
|
|
|
|
{
|
|
|
|
|
FileStream stream = null;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
stream = file.Open(FileMode.Open, FileAccess.Read, FileShare.None);
|
|
|
|
|
}
|
|
|
|
|
catch (IOException)
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
finally
|
|
|
|
|
{
|
|
|
|
|
if (stream != null)
|
|
|
|
|
stream.Close();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//file is not locked
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-17 07:39:06 +00:00
|
|
|
|
public virtual bool IsChildOfPath(string child, string parent)
|
|
|
|
|
{
|
|
|
|
|
if (Path.GetFullPath(child).StartsWith(Path.GetFullPath(parent)))
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2012-12-24 07:16:43 +00:00
|
|
|
|
|
|
|
|
|
public virtual string GetPathRoot(string path)
|
|
|
|
|
{
|
|
|
|
|
return Path.GetPathRoot(path);
|
|
|
|
|
}
|
2011-10-23 05:26:43 +00:00
|
|
|
|
}
|
2011-11-13 04:07:06 +00:00
|
|
|
|
}
|