Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

ASP DriveType Property


❮ Complete Drive Object Reference

The DriveType property returns a value that indicates the type of a specified 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

Example

<%
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

❮ Complete Drive Object Reference