精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

ASP FileExists 方法

asp fileexists 方法

filesystemobject 對象參考手冊 完整的 filesystemobject 對象參考手冊

fileexists 方法返回指示指定的文件是否存在的布爾值。如果存在,則返回 ture,否則返回 false。

語法

filesystemobject.fileexists(filename)

參數 描述
filename 必需的。需檢測是否存在的文件的名稱。

實例

<%
dim fs
set fs=server.createobject("scripting.filesystemobject")
if fs.fileexists("c:\asp\introduction.asp") then
  response.write("file c:\asp\introduction.asp exists!")
else
  response.write("file c:\asp\introduction.asp does not exist!")
end if
set fs=nothing
%>

filesystemobject 對象參考手冊 完整的 filesystemobject 對象參考手冊
相關文章