此代码有什么问题?我可以获得正确的价值? DrvUsg始终为零。请帮助我获得此代码的工作。
Computer cmp = new Computer();
string SysDrv = System.Environment.SystemDirectory.Substring(0, 2);
UInt64 TotalDrv = Convert.ToUInt64(cmp.FileSystem.GetDriveInfo(SysDrv).TotalSize / 1024 / 1024);
UInt64 FreeDrv = Convert.ToUInt64(cmp.FileSystem.GetDriveInfo(SysDrv).AvailableFreeSpace / 1024 / 1024);
UInt64 UsedDrv = (TotalDrv - FreeDrv);
UInt64 DrvUsg = Convert.ToUInt64((UsedDrv / TotalDrv) * 100);
TrkDrvUsg.Value = (int)DrvUsg;
LblDrvUsg.Text = (String.Format("System drive usage: {0}%", DrvUsg));
最佳答案
这就是问题:
UInt64 DrvUsg = Convert.ToUInt64((UsedDrv / TotalDrv) * 100);
这将起作用:
UInt64 DrvUsg = Convert.ToUInt64(100 * UsedDrv / TotalDrv);
您正在执行整数除法,该除法将始终四舍五入,因为
TotalDrv
大于UsedDrv
,结果始终为零。