Esempio n. 1
0
 public FATXDrive(string dumpPath, Info.DriveType dtype)
 {
     if (dtype == Info.DriveType.Backup)
     {
         IsDump = true;
     }
     else if (dtype == Info.DriveType.USB)
     {
         isUSB = true;
     }
     DriveType = dtype;
     DumpPath = dumpPath;
     ReadSize();
 }
Esempio n. 2
0
 public FATXDrive(string dumpPath, Info.DriveType dtype, string volumeLabel)
 {
     if (dtype == Info.DriveType.Backup)
     {
         IsDump = true;
     }
     else if (dtype == Info.DriveType.USB)
     {
         IsUSB = true;
     }
     DriveType = dtype;
     DumpPath  = dumpPath;
     dLabel    = volumeLabel;
     ReadSize();
 }
Esempio n. 3
0
 /// <summary>
 /// Provides information about a specific Xbox 360 Drive
 /// </summary>
 public FATXDrive(int ID, Info.DriveType dtype)
 {
     deviceID = ID;
     DriveType = dtype;
     ReadSize();
 }
Esempio n. 4
0
 /// <summary>
 /// Provides information about a specific Xbox 360 Drive
 /// </summary>
 public FATXDrive(int ID, Info.DriveType dtype)
 {
     deviceID  = ID;
     DriveType = dtype;
     ReadSize();
 }