From http://www.w3schools.com (Copyright Refsnes Data)
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:
| DriveObject.DriveType |
|
<% 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
From http://www.w3schools.com (Copyright Refsnes Data)