ASP DriveExists 方法
asp driveexists 方法

driveexists 方法返回指示指定的驅(qū)動器是否存在的布爾值。如果驅(qū)動器存在則返回 true ,否則返回 false。
語法
filesystemobject.driveexists(drive)
參數(shù) | 描述 |
---|---|
drive | 必需的。驅(qū)動器字母或者完整的路徑規(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
%>
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
%>

相關(guān)文章
- ASP 引用文件
- ASP Response 對象
- ASP 總結(jié)
- ASP 簡介
- 在自己的 PC 上運(yùn)行 ASP
- ASP Line 屬性
- ASP DateLastAccessed 屬性
- ASP DateLastModified 屬性
- ASP Drive 屬性
- ASP Name 屬性
- ASP Files 集合
- ASP Count 屬性
- ASP Add 方法
- ASP Exists 方法
- ASP CacheControl 屬性
- ASP End 方法
- ASP Session_OnStart 和 Session_OnEnd 事件
- ASP MapPath 方法
- ASP FileExists 方法
- ASP GetDrive 方法