DriveType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines constants for drive types, including CDRom, Fixed, Network, NoRootDirectory, Ram, Removable, and Unknown.
public enum class DriveType
public enum DriveType
[System.Runtime.InteropServices.ComVisible(true)]
[System.Serializable]
public enum DriveType
type DriveType =
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Serializable>]
type DriveType =
Public Enum DriveType
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
Unknown | 0 | The type of drive is unknown. |
NoRootDirectory | 1 | The drive does not have a root directory. |
Removable | 2 | The drive is a removable storage device, such as a USB flash drive. |
Fixed | 3 | The drive is a fixed disk. |
Network | 4 | The drive is a network drive. |
CDRom | 5 | The drive is an optical disc device, such as a CD or DVD-ROM. |
Ram | 6 | The drive is a RAM disk. |
Remarks
DriveType is used by the DriveInfo class to indicate drive type. It can be used with the DriveType property.