Fixed Issue 382.

This commit is contained in:
Michael Möller
2012-10-28 11:34:53 +00:00
parent 322b079bf4
commit 87641aebbd

View File

@@ -210,11 +210,20 @@ namespace OpenHardwareMonitor.Hardware.HDD {
if (usageSensor != null) {
long totalSize = 0;
long totalFreeSpace = 0;
for (int i = 0; i < driveInfos.Length; i++) {
if (!driveInfos[i].IsReady)
continue;
try {
totalSize += driveInfos[i].TotalSize;
totalFreeSpace += driveInfos[i].TotalFreeSpace;
} catch (IOException) { } catch (UnauthorizedAccessException) { }
}
if (totalSize > 0) {
usageSensor.Value = 100.0f - (100.0f * totalFreeSpace) / totalSize;
} else {
usageSensor.Value = null;
}
}
}