ASP DriveType 属性
ASP DriveType 属性用于获取给定驱动器的类型。它返回一个介于 0 和 5 之间的数值,指定驱动器的类型,如下所示:
- 0:用于未知驱动器。
- 1:这用于可移动驱动器。
- 2:这用于固定驱动器。
- 3:这用于网络驱动器。
- 4:这用于CD-ROM。
- 5:这用于 RAM 磁盘。
句法:
DriveObject.DriveType
下面的示例说明了 ASP Drive.DriveType 属性。
示例 1:使用硬盘驱动器。
ASP
<%
dim fs,dr
set fs=Server.CreateObject("Scripting.FileSystemObject")
'Getting the drive
set dr=fs.GetDrive("d:")
'Getting the type of the drive
Response.Write("The type of the drive is: " & dr.DriveType)
set dr=nothing
set fs=nothing
%>
ASP
<%
dim fs,dr
set fs=Server.CreateObject("Scripting.FileSystemObject")
'Getting the drive
set dr=fs.GetDrive("a:")
'Getting the type of the drive
Response.Write("The type of the drive is: " & dr.DriveType)
set dr=nothing
set fs=nothing
%>
输出:
The type of the drive is: 2
示例 2:使用软盘驱动器。
ASP
<%
dim fs,dr
set fs=Server.CreateObject("Scripting.FileSystemObject")
'Getting the drive
set dr=fs.GetDrive("a:")
'Getting the type of the drive
Response.Write("The type of the drive is: " & dr.DriveType)
set dr=nothing
set fs=nothing
%>
输出:
The type of the drive is: 1