Beispiel #1
0
 public bool DriveHasSecuritySector()
 {
     if (DriveType == DriveType.USB)
     {
         return(false);
     }
     Streams.Reader r = Reader();
     r.BaseStream.Position = 0x2000;
     if (r.ReadByte() == 0x20)
     {
         return(true);
     }
     return(false);
 }