संपादित करें

इसके माध्यम से साझा किया गया


DriveType Enum

Definition

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
DriveType
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.

Applies to