欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

ASP DriveExists 方法

定義和用法

DriveExists 方法返回指示指定的驅(qū)動(dòng)器是否存在的布爾值。如果驅(qū)動(dòng)器存在則返回 True ,否則,返回 False。

語(yǔ)法:

FileSystemObject.DriveExists(drive)
參數(shù) 描述
drive 必需的。驅(qū)動(dòng)器字母或者完整的路徑規(guī)定。

實(shí)例

<%
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
%>