I need to check in C# if a hard disk is SSD (Solid-state drive), no seek penalty? I used:
ManagementClass driveClass = new ManagementClass("Win32_DiskDrive");
ManagementObjectCollection drives = driveClass.GetInstances();
But its only gives Strings that contain SSD in the properties, I can't depend on that?
I Need a direct way to check that?