public static PartitionSystemType[] detectPartitionSystem(ReadableRandomAccessStream psStream) {
   long len;
   try {
     len = psStream.length();
   } catch (RuntimeIOException e) {
     len = -1;
   }
   return detectPartitionSystem(psStream, 0, len);
 }