ASP DriveType Attribute
Definition and Usage
The DriveType property returns a value that indicates the type of drive.
This property can return one of the following values:
- 0 = unknown
- 1 = removable
- 2 = fixed
- 3 = network
- 4 = CD-ROM
- 5 = RAM disk
Syntax:
DriveObject.DriveType
instance
<% dim fs,d set fs=Server.CreateObject("Scripting.FileSystemObject") set d=fs.GetDrive("a:") Response.Write("The drive type is: " & d.DriveType) set d=nothing set fs=nothing %>
Output:
The drive type is: 1