Question : GetDriveGeometry() Gives Wrong Information

I'm writing a program that calls the DeviceIoControl API in order to use the GetDriveGeometry method.  However, when I obtain the information from GetDriveGeometry(), most of the information is incorrect.  It gives the correct number of cylinders, but everything else (bytes per sector, sectors per track, disk size, etc.) is wrong.  I am mainly concerned with the disk size, but the other properties would be nice to double check that all the information is correct.  Can anyone help me find what is going on here, and how to fix it?
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
[DllImport("Kernel32.dll", SetLastError = true)]
        static extern unsafe bool DeviceIoControl(IntPtr handle, EIOControlCode IoControlCode,
            IntPtr lpInBuffer, uint InBufferSize, DISK_GEOMETRY lpOutBuffer, uint nOutBufferSize,
            ref uint lpBytesReturned, IntPtr lpOverlapped);
 
unsafe static public bool GetDriveGeometry(DISK_GEOMETRY pdg)
            {
                uint junk = 51200; //DISCARD RESULTS
 
                if (handle.ToInt32() <= 0)
                    return false;
 
                byte[] buffer = new byte[512];
 
               bool result = DeviceIoControl(handle, EIOControlCode.DiskGetDriveGeometry, IntPtr.Zero, (uint)0,
                   pdg, (uint)buffer.Length, ref junk, IntPtr.Zero);
 
                if(Marshal.GetLastWin32Error() != 0)
                    Console.WriteLine("Geometry Error: " + Marshal.GetLastWin32Error());
 
                return result;
 
            }
 
        } 
 
    [StructLayout(LayoutKind.Sequential)]
    internal class DISK_GEOMETRY
    {
        public long cylinders;
        public uint tracksPerCylinder;
        public uint sectorsPerTrack;
        public uint bytesPerSector;
    }
 
Console.WriteLine("  Cylinders = {0}", pdg.cylinders);
                    Console.WriteLine("  Tracks per cylinder = {0}", pdg.tracksPerCylinder);
                    Console.WriteLine("  Sectors per track = {0}", pdg.sectorsPerTrack);
                    Console.WriteLine("  Bytes per sector = {0}", pdg.bytesPerSector);
 
                    diskSize = pdg.cylinders * pdg.tracksPerCylinder *
                    pdg.sectorsPerTrack * pdg.bytesPerSector;
                    Console.WriteLine("  Disk size = {0} (Bytes) = {1} (Mb)\n", diskSize,
                    diskSize / (1024 * 1024));
Open in New Window Select All

Answer : GetDriveGeometry() Gives Wrong Information

Another useful tool is the new P/Invoke Interop Assistant http://www.codeplex.com/clrinterop (although, it didin't have it either)

IOCTL_DISK_GET_DRIVE_GEOMETRY_EX is  458912

Random Solutions  
 
programming4us programming4us