DriveExists

阅读:33      收藏:0      [点我收藏+]

ASP DriveExists 方法


DriveExists 方法返回指示指定的驱动器是否存在的布尔值。如果驱动器存在则返回 True ,否则返回 False。

语法

FileSystemObject.DriveExists(drive)

参数 描述
drive 必需的。驱动器字母或者完整的路径规定。

实例

<%
dim fs
set fs=Server.CreateObject("Scripting.FileSystemObject")
if fs.DriveExists("c:")=true then
 response.write("Drive c: exists!")
else
 response.write("Drive c: does not exist.")
end If
set fs=nothing
%>
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!