Type Alias DriveInfo

type DriveInfo = {
    qDrive?: string;
    qName?: string;
    qType?: string;
    qTypeIdentifier?: DriveType;
    qUnnamedDrive?: boolean;
}
Index

Properties

qDrive?: string

Value of the drive. Examples: C:\, E:\\

qName?: string

Name of the drive.

qType?: string

Type of the drive. Fixed means physical drive.

qTypeIdentifier?: DriveType

Information about the drive type.

One of:

  • REMOVABLE
  • FIXED
  • NETWORK
  • CD_ROM
  • RAM
  • UNKNOWN_TYPE
qUnnamedDrive?: boolean