ASP GetDrive 方法

定义和用法

GetDrive 方法可返回由 drivespec 参数规定的 Drive 对象。

语法:

FileSystemObject.GetDrive(drivespec)
参数 描述
drivespec 必需的。可以是驱动器字母 (c),或者带有冒号的驱动器字母,或者带有冒号和路径分隔符的驱动器字母,或者任何网络共享规范 (\\computer2\share1)。

实例

<%
dim fs,d
set fs=Server.CreateObject("Scripting.FileSystemObject")
set d=fs.GetDrive("c:\")
set fs=nothing
%>