|
|
@ -303,25 +303,23 @@ namespace NzbDrone.Common
|
|
|
|
{
|
|
|
|
{
|
|
|
|
var drives = DriveInfo.GetDrives();
|
|
|
|
var drives = DriveInfo.GetDrives();
|
|
|
|
|
|
|
|
|
|
|
|
foreach (var drive in drives)
|
|
|
|
try
|
|
|
|
{
|
|
|
|
{
|
|
|
|
try
|
|
|
|
return
|
|
|
|
{
|
|
|
|
drives.Where(drive =>
|
|
|
|
if (drive.IsReady && path.StartsWith(drive.Name, StringComparison.CurrentCultureIgnoreCase))
|
|
|
|
drive.IsReady && path.StartsWith(drive.Name, StringComparison.CurrentCultureIgnoreCase))
|
|
|
|
{
|
|
|
|
.OrderByDescending(drive => drive.Name.Length)
|
|
|
|
return drive.AvailableFreeSpace;
|
|
|
|
.First()
|
|
|
|
}
|
|
|
|
.AvailableFreeSpace;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (InvalidOperationException e)
|
|
|
|
catch (InvalidOperationException e)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
Logger.ErrorException("Couldn't get free space for " + path, e);
|
|
|
|
Logger.ErrorException("Couldn't get free space for " + path, e);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return DriveFreeSpaceEx(root);
|
|
|
|
return DriveFreeSpaceEx(root);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|