Fix GetSizeOnAllDisks throws exception on LocalFileSystem (#3)

Dvd/Cd will throw exception: System.IO.IOException: 'The device is not ready'.
This commit is contained in:
Greg Amidon 2018-12-14 10:09:07 -06:00 коммит произвёл Artyom
Родитель dc160f6ab6
Коммит 4386639c0c
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -79,6 +79,7 @@ namespace Camelotia.Services.Providers
{
var totalBytes = DriveInfo
.GetDrives()
.Where(p => p.DriveType != DriveType.CDRom)
.Select(x => x.AvailableFreeSpace)
.Sum();