mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 21:13:28 -07:00
Added DirectoryInfo.FreeDiskSpace to get the free disk space of any directory.
This commit is contained in:
parent
9780a03c11
commit
c296b6975c
2 changed files with 32 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
using System;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Net;
|
||||
using System.ServiceModel.Syndication;
|
||||
using AutoMoq;
|
||||
|
@ -91,5 +92,13 @@ namespace NzbDrone.Core.Test
|
|||
Console.WriteLine(dateTime.DayOfWeek);
|
||||
dateTime.ToBestDateString().Should().Be(dateTime.ToShortDateString());
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void FreeDiskSpace()
|
||||
{
|
||||
//Checks to ensure that the free space on the first is greater than 0 (It should be in 99.99999999999999% of cases... I hope)
|
||||
var di = DriveInfo.GetDrives().First().RootDirectory;
|
||||
di.FreeDiskSpace().Should().BeGreaterThan(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue