当前位置: 首页 > 网络学院 > 服务端脚本教程 > ASP > ASP DriveType 属性
The DriveType property returns a value that indicates the type of a specified drive.
ASP DriveType属性的作用是返回指定驱动器的类型。
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 |